diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-06-22 18:36:04 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-06-25 14:15:50 -0400 |
commit | f30a79b012e5d9b3887f6a59293d9ef3ca0e2c3e (patch) | |
tree | 3a7dcc611645c5a3e1849b63621b9acfb29b523a /tools/perf/tests/mmap-basic.c | |
parent | 4cc97614812e96c135e369f3d723fcda07d33437 (diff) |
perf tools: Add reference counting for cpu_map object
Adding refference counting for cpu_map object, so it could be easily
shared among other objects.
Using cpu_map__put instead cpu_map__delete and making cpu_map__delete
static.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1435012588-9007-4-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/mmap-basic.c')
-rw-r--r-- | tools/perf/tests/mmap-basic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/tests/mmap-basic.c b/tools/perf/tests/mmap-basic.c index 5855cf471210..5a9ef5833452 100644 --- a/tools/perf/tests/mmap-basic.c +++ b/tools/perf/tests/mmap-basic.c | |||
@@ -140,7 +140,7 @@ out_delete_evlist: | |||
140 | cpus = NULL; | 140 | cpus = NULL; |
141 | threads = NULL; | 141 | threads = NULL; |
142 | out_free_cpus: | 142 | out_free_cpus: |
143 | cpu_map__delete(cpus); | 143 | cpu_map__put(cpus); |
144 | out_free_threads: | 144 | out_free_threads: |
145 | thread_map__delete(threads); | 145 | thread_map__delete(threads); |
146 | return err; | 146 | return err; |