]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
perf stat: Fix printout vertical alignment
authorIngo Molnar <mingo@elte.hu>
Thu, 28 Apr 2011 00:57:53 +0000 (02:57 +0200)
committerIngo Molnar <mingo@elte.hu>
Wed, 27 Apr 2011 15:48:55 +0000 (17:48 +0200)
Before:

 |
 | Performance counter stats for '/home/mingo/hackbench 20' (5 runs):
 |
 |        71,321,607 instructions:u           #    0.42  insns per cycle  ( +-  0.00% )
 |       168,040,009 cycles:u                 #    0.000 GHz                      ( +-  0.81% )
 |
 |        1.468002368  seconds time elapsed  ( +-  1.33% )
 |

After:

 |
 | Performance counter stats for '/home/mingo/hackbench 20' (5 runs):
 |
 |        71,321,607 instructions:u           #    0.42  insns per cycle          ( +-  0.00% )
 |       168,040,009 cycles:u                 #    0.000 GHz                      ( +-  0.81% )
 |
 |        1.468002368  seconds time elapsed  ( +-  1.33% )
 |

The last column (stddev noise) is properly aligned, vertically.

Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/n/tip-7y40wib8n1eqio7hjpn0dsrm@git.kernel.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
tools/perf/builtin-stat.c

index 6959fdecb20377fc84891ff7d4ac8d2eba789d3b..003caa857a440b9fad6c26e286c05c7e3c0d7331 100644 (file)
@@ -575,7 +575,7 @@ static void abs_printout(int cpu, struct perf_evsel *evsel, double avg)
                if (total)
                        ratio = avg / total;
 
-               fprintf(stderr, " #    %4.2f  insns per cycle", ratio);
+               fprintf(stderr, " #    %4.2f  insns per cycle        ", ratio);
 
                total = avg_stats(&runtime_stalled_cycles_stats[cpu]);