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/util/parse-events.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/util/parse-events.c')
-rw-r--r-- | tools/perf/util/parse-events.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c index 2a4d1ec02846..09f8d2357108 100644 --- a/tools/perf/util/parse-events.c +++ b/tools/perf/util/parse-events.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include "parse-events-flex.h" | 17 | #include "parse-events-flex.h" |
18 | #include "pmu.h" | 18 | #include "pmu.h" |
19 | #include "thread_map.h" | 19 | #include "thread_map.h" |
20 | #include "cpumap.h" | ||
20 | #include "asm/bug.h" | 21 | #include "asm/bug.h" |
21 | 22 | ||
22 | #define MAX_NAME_LEN 100 | 23 | #define MAX_NAME_LEN 100 |
@@ -285,7 +286,9 @@ __add_event(struct list_head *list, int *idx, | |||
285 | if (!evsel) | 286 | if (!evsel) |
286 | return NULL; | 287 | return NULL; |
287 | 288 | ||
288 | evsel->cpus = cpus; | 289 | if (cpus) |
290 | evsel->cpus = cpu_map__get(cpus); | ||
291 | |||
289 | if (name) | 292 | if (name) |
290 | evsel->name = strdup(name); | 293 | evsel->name = strdup(name); |
291 | list_add_tail(&evsel->node, list); | 294 | list_add_tail(&evsel->node, list); |