[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-d50ed0ce820414dbe249a6ad5c9830e29cc46fcc@git.kernel.org>
Date: Thu, 6 Sep 2018 06:21:05 -0700
From: tip-bot for Jiri Olsa <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: namhyung@...nel.org, peterz@...radead.org, tglx@...utronix.de,
jolsa@...nel.org, hpa@...or.com, mingo@...nel.org, acme@...hat.com,
andi@...stfloor.org, dsahern@...il.com,
linux-kernel@...r.kernel.org, alexander.shishkin@...ux.intel.com
Subject: [tip:perf/core] perf stat: Use evsel->threads in
create_perf_stat_counter()
Commit-ID: d50ed0ce820414dbe249a6ad5c9830e29cc46fcc
Gitweb: https://git.kernel.org/tip/d50ed0ce820414dbe249a6ad5c9830e29cc46fcc
Author: Jiri Olsa <jolsa@...nel.org>
AuthorDate: Thu, 30 Aug 2018 08:32:10 +0200
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Thu, 30 Aug 2018 15:52:21 -0300
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 <jolsa@...nel.org>
Cc: Alexander Shishkin <alexander.shishkin@...ux.intel.com>
Cc: Andi Kleen <andi@...stfloor.org>
Cc: David Ahern <dsahern@...il.com>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Peter Zijlstra <peterz@...radead.org>
Link: http://lkml.kernel.org/r/20180830063252.23729-2-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/builtin-stat.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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,
Powered by blists - more mailing lists