aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAdrian Hunter <adrian.hunter@intel.com>2015-09-08 03:58:56 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-09-15 09:44:22 -0400
commit934e0f2053ce299893ca48a411bf7fdc8ac6254f (patch)
tree1e30f1d040c4cd5392d6eb6b4e46b2735d11a291 /tools
parentfce4d296b405b03fba033a55017348bf55b10db6 (diff)
perf evlist: Make set_maps() more resilient
Make perf_evlist__set_maps() more resilient by allowing for the possibility that one or another of the maps isn't being changed and therefore should not be "put". Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Kan Liang <kan.liang@intel.com> Link: http://lkml.kernel.org/r/1441699142-18905-9-git-send-email-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/evlist.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c
index 5bd3b49452c6..78ff52ee8788 100644
--- a/tools/perf/util/evlist.c
+++ b/tools/perf/util/evlist.c
@@ -1155,11 +1155,22 @@ out_delete_threads:
1155void perf_evlist__set_maps(struct perf_evlist *evlist, struct cpu_map *cpus, 1155void perf_evlist__set_maps(struct perf_evlist *evlist, struct cpu_map *cpus,
1156 struct thread_map *threads) 1156 struct thread_map *threads)
1157{ 1157{
1158 cpu_map__put(evlist->cpus); 1158 /*
1159 evlist->cpus = cpus; 1159 * Allow for the possibility that one or another of the maps isn't being
1160 * changed i.e. don't put it. Note we are assuming the maps that are
1161 * being applied are brand new and evlist is taking ownership of the
1162 * original reference count of 1. If that is not the case it is up to
1163 * the caller to increase the reference count.
1164 */
1165 if (cpus != evlist->cpus) {
1166 cpu_map__put(evlist->cpus);
1167 evlist->cpus = cpus;
1168 }
1160 1169
1161 thread_map__put(evlist->threads); 1170 if (threads != evlist->threads) {
1162 evlist->threads = threads; 1171 thread_map__put(evlist->threads);
1172 evlist->threads = threads;
1173 }
1163 1174
1164 perf_evlist__propagate_maps(evlist); 1175 perf_evlist__propagate_maps(evlist);
1165} 1176}