diff options
author | Jiri Olsa <jolsa@kernel.org> | 2019-07-21 07:24:17 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-07-29 17:34:44 -0400 |
commit | 38f01d8da1d8d28678ea16a0a484f4d3eded34b2 (patch) | |
tree | 7ab5e39d58a734182355370694e8460418f7a717 /tools/perf/tests/code-reading.c | |
parent | 397721e06e52d017cfdd403f63284ed0995d4caf (diff) |
libperf: Add perf_cpu_map__get()/perf_cpu_map__put()
Moving the following functions:
cpu_map__get()
cpu_map__put()
to libperf with following names:
perf_cpu_map__get()
perf_cpu_map__put()
Committer notes:
Added fixes for arm/arm64
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190721112506.12306-31-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/code-reading.c')
-rw-r--r-- | tools/perf/tests/code-reading.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/tests/code-reading.c b/tools/perf/tests/code-reading.c index ec4b0bf28270..ce2d3266286a 100644 --- a/tools/perf/tests/code-reading.c +++ b/tools/perf/tests/code-reading.c | |||
@@ -655,7 +655,7 @@ static int do_test_code_reading(bool try_kcore) | |||
655 | * and will be freed by following perf_evlist__set_maps | 655 | * and will be freed by following perf_evlist__set_maps |
656 | * call. Getting refference to keep them alive. | 656 | * call. Getting refference to keep them alive. |
657 | */ | 657 | */ |
658 | cpu_map__get(cpus); | 658 | perf_cpu_map__get(cpus); |
659 | thread_map__get(threads); | 659 | thread_map__get(threads); |
660 | perf_evlist__set_maps(evlist, NULL, NULL); | 660 | perf_evlist__set_maps(evlist, NULL, NULL); |
661 | evlist__delete(evlist); | 661 | evlist__delete(evlist); |
@@ -705,7 +705,7 @@ out_err: | |||
705 | if (evlist) { | 705 | if (evlist) { |
706 | evlist__delete(evlist); | 706 | evlist__delete(evlist); |
707 | } else { | 707 | } else { |
708 | cpu_map__put(cpus); | 708 | perf_cpu_map__put(cpus); |
709 | thread_map__put(threads); | 709 | thread_map__put(threads); |
710 | } | 710 | } |
711 | machine__delete_threads(machine); | 711 | machine__delete_threads(machine); |