Skip to content

Commit

Permalink
perf stat: Move zero_per_pkg into counter process code
Browse files Browse the repository at this point in the history
Moving zero_per_pkg into counter process code,
to make the reading path free of processing logic.

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/1435310967-14570-17-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Jiri Olsa authored and Arnaldo Carvalho de Melo committed Jun 26, 2015
1 parent 3b3eb04 commit 32ce0a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/perf/builtin-stat.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,9 @@ static int process_counter(struct perf_evsel *counter)

aggr->val = aggr->ena = aggr->run = 0;

if (counter->per_pkg)
zero_per_pkg(counter);

ret = process_counter_maps(counter);
if (ret)
return ret;
Expand Down Expand Up @@ -328,9 +331,6 @@ static int read_counter(struct perf_evsel *counter)
if (counter->system_wide)
nthreads = 1;

if (counter->per_pkg)
zero_per_pkg(counter);

for (thread = 0; thread < nthreads; thread++) {
for (cpu = 0; cpu < ncpus; cpu++) {
struct perf_counts_values *count;
Expand Down

0 comments on commit 32ce0a4

Please sign in to comment.