commit | 0f98b11c616f240b54ee85629ff4d3650c7ccc7d | [log] [tgz] |
---|---|---|
author | Jiri Olsa <[email protected]> | Sun Jul 21 13:23:55 2019 +0200 |
committer | Arnaldo Carvalho de Melo <[email protected]> | Mon Jul 29 18:34:43 2019 -0300 |
tree | a4e66783cfb096a70ac999213cc59a92266521d4 | |
parent | 52c86bca94b42239563b1510d5fc6329b0ec1a86 [diff] [blame] |
perf evlist: Rename perf_evlist__new() to evlist__new() Rename perf_evlist__new() to evlist__new(), so we don't have a name clash when we add perf_evlist__new() in libperf. Signed-off-by: Jiri Olsa <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Alexey Budankov <[email protected]> Cc: Andi Kleen <[email protected]> Cc: Michael Petlan <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
diff --git a/tools/perf/tests/keep-tracking.c b/tools/perf/tests/keep-tracking.c index e0779f2..4c73377 100644 --- a/tools/perf/tests/keep-tracking.c +++ b/tools/perf/tests/keep-tracking.c
@@ -78,7 +78,7 @@ int test__keep_tracking(struct test *test __maybe_unused, int subtest __maybe_un cpus = cpu_map__new(NULL); CHECK_NOT_NULL__(cpus); - evlist = perf_evlist__new(); + evlist = evlist__new(); CHECK_NOT_NULL__(evlist); perf_evlist__set_maps(evlist, cpus, threads);