perf evlist: Use the right prefix for 'struct evlist' pause/resume methods

perf_evlist__ is for 'struct perf_evlist' methods, in tools/lib/perf/,
go on completing this split.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 37b01abe
...@@ -604,7 +604,7 @@ struct evsel *evlist__event2evsel(struct evlist *evlist, union perf_event *event ...@@ -604,7 +604,7 @@ struct evsel *evlist__event2evsel(struct evlist *evlist, union perf_event *event
return NULL; return NULL;
} }
static int perf_evlist__set_paused(struct evlist *evlist, bool value) static int evlist__set_paused(struct evlist *evlist, bool value)
{ {
int i; int i;
...@@ -624,14 +624,14 @@ static int perf_evlist__set_paused(struct evlist *evlist, bool value) ...@@ -624,14 +624,14 @@ static int perf_evlist__set_paused(struct evlist *evlist, bool value)
return 0; return 0;
} }
static int perf_evlist__pause(struct evlist *evlist) static int evlist__pause(struct evlist *evlist)
{ {
return perf_evlist__set_paused(evlist, true); return evlist__set_paused(evlist, true);
} }
static int perf_evlist__resume(struct evlist *evlist) static int evlist__resume(struct evlist *evlist)
{ {
return perf_evlist__set_paused(evlist, false); return evlist__set_paused(evlist, false);
} }
static void evlist__munmap_nofree(struct evlist *evlist) static void evlist__munmap_nofree(struct evlist *evlist)
...@@ -1621,10 +1621,10 @@ void evlist__toggle_bkw_mmap(struct evlist *evlist, enum bkw_mmap_state state) ...@@ -1621,10 +1621,10 @@ void evlist__toggle_bkw_mmap(struct evlist *evlist, enum bkw_mmap_state state)
switch (action) { switch (action) {
case PAUSE: case PAUSE:
perf_evlist__pause(evlist); evlist__pause(evlist);
break; break;
case RESUME: case RESUME:
perf_evlist__resume(evlist); evlist__resume(evlist);
break; break;
case NONE: case NONE:
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment