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/builtin-stat.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/builtin-stat.c')
-rw-r--r-- | tools/perf/builtin-stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index 36e66a4f3c57..39bd73d0e06e 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c | |||
@@ -933,8 +933,8 @@ static int perf_stat_init_aggr_mode(void) | |||
933 | 933 | ||
934 | static void perf_stat__exit_aggr_mode(void) | 934 | static void perf_stat__exit_aggr_mode(void) |
935 | { | 935 | { |
936 | cpu_map__put(stat_config.aggr_map); | 936 | perf_cpu_map__put(stat_config.aggr_map); |
937 | cpu_map__put(stat_config.cpus_aggr_map); | 937 | perf_cpu_map__put(stat_config.cpus_aggr_map); |
938 | stat_config.aggr_map = NULL; | 938 | stat_config.aggr_map = NULL; |
939 | stat_config.cpus_aggr_map = NULL; | 939 | stat_config.cpus_aggr_map = NULL; |
940 | } | 940 | } |