[PATCH 3/3] perf, tools, stat: Always correctly indent ratio column

2015-03-11 Thread Andi Kleen
From: Andi Kleen 

When cycles or instructions do not print anything, as in being,
--per-socket or --per-core modi, the ratio column was not
correctly indented for them. This lead to some ratios
not lining up with the others. Always indent correctly
when nothing is printed.

Signed-off-by: Andi Kleen 
---
 tools/perf/builtin-stat.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index e78c68d..41b296f 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -1093,7 +1093,8 @@ static void abs_printout(int id, int nr, struct 
perf_evsel *evsel, double avg)
if (total) {
ratio = avg / total;
fprintf(output, " #   %5.2f  insns per cycle", 
ratio);
-   }
+   } else
+   fprintf(output, "   ");
total = avg_stats(_stalled_cycles_front_stats[cpu]);
total = max(total, 
avg_stats(_stalled_cycles_back_stats[cpu]));
 
@@ -1162,7 +1163,8 @@ static void abs_printout(int id, int nr, struct 
perf_evsel *evsel, double avg)
if (total) {
ratio = avg / total;
fprintf(output, " # %8.3f GHz", 
ratio);
-   }
+   } else
+   fprintf(output, "   ");
} else if (transaction_run &&
   perf_evsel__cmp(evsel, nth_evsel(T_CYCLES_IN_TX))) {
total = avg_stats(_cycles_stats[cpu]);
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 3/3] perf, tools, stat: Always correctly indent ratio column

2015-03-11 Thread Andi Kleen
From: Andi Kleen a...@linux.intel.com

When cycles or instructions do not print anything, as in being,
--per-socket or --per-core modi, the ratio column was not
correctly indented for them. This lead to some ratios
not lining up with the others. Always indent correctly
when nothing is printed.

Signed-off-by: Andi Kleen a...@linux.intel.com
---
 tools/perf/builtin-stat.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index e78c68d..41b296f 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -1093,7 +1093,8 @@ static void abs_printout(int id, int nr, struct 
perf_evsel *evsel, double avg)
if (total) {
ratio = avg / total;
fprintf(output,  #   %5.2f  insns per cycle, 
ratio);
-   }
+   } else
+   fprintf(output,);
total = avg_stats(runtime_stalled_cycles_front_stats[cpu]);
total = max(total, 
avg_stats(runtime_stalled_cycles_back_stats[cpu]));
 
@@ -1162,7 +1163,8 @@ static void abs_printout(int id, int nr, struct 
perf_evsel *evsel, double avg)
if (total) {
ratio = avg / total;
fprintf(output,  # %8.3f GHz, 
ratio);
-   }
+   } else
+   fprintf(output,);
} else if (transaction_run 
   perf_evsel__cmp(evsel, nth_evsel(T_CYCLES_IN_TX))) {
total = avg_stats(runtime_cycles_stats[cpu]);
-- 
1.9.3

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/