diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-11-30 18:17:57 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-11-30 18:17:57 +0100 |
commit | 3ccf8a7b66b6bff69a7be62f2d5a2a61328ebe91 (patch) | |
tree | 89b17c26c542756333b635dc107ce88df3398073 /tools/perf/util/stat.c | |
parent | perf evlist: Ditch unused set/reset sample_bit methods (diff) | |
download | linux-3ccf8a7b66b6bff69a7be62f2d5a2a61328ebe91.tar.xz linux-3ccf8a7b66b6bff69a7be62f2d5a2a61328ebe91.zip |
perf evlist: Use the right prefix for 'struct evlist' sample id lookup 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: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/stat.c')
-rw-r--r-- | tools/perf/util/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/stat.c b/tools/perf/util/stat.c index 8be9c3da9e56..1e125e39ff84 100644 --- a/tools/perf/util/stat.c +++ b/tools/perf/util/stat.c @@ -458,7 +458,7 @@ int perf_event__process_stat_event(struct perf_session *session, count.ena = st->ena; count.run = st->run; - counter = perf_evlist__id2evsel(session->evlist, st->id); + counter = evlist__id2evsel(session->evlist, st->id); if (!counter) { pr_err("Failed to resolve counter for stat event.\n"); return -EINVAL; |