mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 18:11:56 +00:00
perf evlist: Tolerate NULL maps in propagate_maps
Tolerating NULL maps in perf_evlist__propagate_maps, so we dont need to pass evlist with both cpus and threads maps defined. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: David Ahern <dsahern@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1437481927-29538-10-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
52361ff093
commit
0e5ffb317d
@ -1119,7 +1119,8 @@ static int perf_evlist__propagate_maps(struct perf_evlist *evlist,
|
||||
|
||||
evsel->threads = thread_map__get(evlist->threads);
|
||||
|
||||
if (!evsel->cpus || !evsel->threads)
|
||||
if ((evlist->cpus && !evsel->cpus) ||
|
||||
(evlist->threads && !evsel->threads))
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user