aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-stat.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <[email protected]>2020-11-30 17:56:52 +0000
committerArnaldo Carvalho de Melo <[email protected]>2020-11-30 17:56:52 +0000
commit7748bb7175ccad5ee29e7355134b0061d8edf3d2 (patch)
tree0caa9296cf495cadb7800173cf6b598982ad4df7 /tools/perf/builtin-stat.c
parentperf evlist: Use the right prefix for 'struct evlist' print methods (diff)
downloadkernel-7748bb7175ccad5ee29e7355134b0061d8edf3d2.tar.gz
kernel-7748bb7175ccad5ee29e7355134b0061d8edf3d2.zip
perf evlist: Use the right prefix for 'struct evlist' create maps methods
perf_evlist__ is for 'struct perf_evlist' methods, in tools/lib/perf/, go on completing this split. Cc: Adrian Hunter <[email protected]> Cc: Ian Rogers <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Namhyung Kim <[email protected]> Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/builtin-stat.c')
-rw-r--r--tools/perf/builtin-stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index d69378f135e6..1e967c32db7c 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -2249,7 +2249,7 @@ int cmd_stat(int argc, const char **argv)
if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
target.per_thread = true;
- if (perf_evlist__create_maps(evsel_list, &target) < 0) {
+ if (evlist__create_maps(evsel_list, &target) < 0) {
if (target__has_task(&target)) {
pr_err("Problems finding threads of monitor\n");
parse_options_usage(stat_usage, stat_options, "p", 1);