diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-04-29 21:50:10 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-05-05 22:35:30 +0300 |
commit | e76026bdd51bcd4a0b9793c655891cde45367f5f (patch) | |
tree | a228ee4934b7c0bf0cdff4aa824ceaa0ff1b30e2 /tools/perf/util/auxtrace.c | |
parent | 12f5261dac90aea0fd5287b01d50397334cf303e (diff) | |
download | linux-e76026bdd51bcd4a0b9793c655891cde45367f5f.tar.xz |
perf evsel: Rename perf_evsel__find_pmu() to evsel__find_pmu()
As it is a 'struct evsel' method, not part of tools/lib/perf/, aka
libperf, to whom the perf_ prefix belongs.
Cc: Adrian Hunter <adrian.hunter@intel.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/auxtrace.c')
-rw-r--r-- | tools/perf/util/auxtrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/auxtrace.c b/tools/perf/util/auxtrace.c index 83ea7ca24686..cddd1d36f724 100644 --- a/tools/perf/util/auxtrace.c +++ b/tools/perf/util/auxtrace.c @@ -2542,7 +2542,7 @@ out_exit: static int perf_evsel__nr_addr_filter(struct evsel *evsel) { - struct perf_pmu *pmu = perf_evsel__find_pmu(evsel); + struct perf_pmu *pmu = evsel__find_pmu(evsel); int nr_addr_filters = 0; if (!pmu) |