perf stat: Handled scaled == -1 case for counters
authorAndi Kleen <ak@linux.intel.com>
Wed, 17 Feb 2016 22:44:00 +0000 (14:44 -0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 19 Feb 2016 22:12:45 +0000 (19:12 -0300)
Arnaldo pointed out that the earlier cb110f471025 ("perf stat: Move
noise/running printing into printout") change changed behavior for not
counted counters. This patch fixes it again.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Fixes: cb110f471025 ("perf stat: Move noise/running printing into printout")
Link: http://lkml.kernel.org/r/1455749045-18098-2-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-stat.c

index 15e4fcf34e0c6cff917ee828b4331c9820d46db8..86289dfcb4524457599910777825fb2ecba92973 100644 (file)
@@ -860,7 +860,7 @@ static void printout(int id, int nr, struct perf_evsel *counter, double uval,
 
        nl = new_line_std;
 
-       if (run == 0 || ena == 0) {
+       if (run == 0 || ena == 0 || counter->counts->scaled == -1) {
                aggr_printout(counter, id, nr);
 
                fprintf(stat_config.output, "%*s%s",
This page took 0.02738 seconds and 5 git commands to generate.