Commit 0a60b339 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

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
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -604,7 +604,7 @@ struct evsel *evlist__event2evsel(struct evlist *evlist, union perf_event *event
	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;

@@ -624,14 +624,14 @@ static int perf_evlist__set_paused(struct evlist *evlist, bool value)
	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)
@@ -1621,10 +1621,10 @@ void evlist__toggle_bkw_mmap(struct evlist *evlist, enum bkw_mmap_state state)

	switch (action) {
	case PAUSE:
		perf_evlist__pause(evlist);
		evlist__pause(evlist);
		break;
	case RESUME:
		perf_evlist__resume(evlist);
		evlist__resume(evlist);
		break;
	case NONE:
	default: