aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiri Olsa <[email protected]>2018-08-30 08:32:10 +0200
committerArnaldo Carvalho de Melo <[email protected]>2018-08-30 15:52:21 -0300
commitd50ed0ce820414dbe249a6ad5c9830e29cc46fcc (patch)
treeed64535507f5c7cbb18d714df5a87bb4d828ef9e
parentc4191e55b8741f72d44c7c1435c340681ae1ea4e (diff)
perf stat: Use evsel->threads in create_perf_stat_counter()
Get rid of the evsel_list dependency, here we can use the evsel->threads copy of the struct thread_map. Signed-off-by: Jiri Olsa <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Andi Kleen <[email protected]> Cc: David Ahern <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r--tools/perf/builtin-stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index d097b5b47eb8..d389ed623715 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -293,7 +293,7 @@ static int create_perf_stat_counter(struct perf_evsel *evsel)
if (target__has_cpu(&target) && !target__has_per_thread(&target))
return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
- return perf_evsel__open_per_thread(evsel, evsel_list->threads);
+ return perf_evsel__open_per_thread(evsel, evsel->threads);
}
static int process_synthesized_event(struct perf_tool *tool __maybe_unused,