Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1217924
| From | Andi Kleen <andi@firstfloor.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 8/9] perf, tools, stat: Remove extra unsupported/not counted handling |
| Date | 2015-09-03 01:40 +0200 |
| Message-ID | <q4pNg-32i-23@gated-at.bofh.it> (permalink) |
| References | <q4pNf-32i-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Andi Kleen <ak@linux.intel.com>
printout now handles unsupported/not counted printing, so we can
remove one extra instance in the aggregated printing.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
---
tools/perf/builtin-stat.c | 22 ++--------------------
1 file changed, 2 insertions(+), 20 deletions(-)
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index f049fa67c..68c16e6 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -841,26 +841,8 @@ static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
if (prefix)
fprintf(output, "%s", prefix);
- if (scaled == -1 || !counter->supported) {
- fprintf(output, "%*s%s",
- csv_output ? 0 : 18,
- counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
- csv_sep);
- fprintf(output, "%-*s%s",
- csv_output ? 0 : unit_width,
- counter->unit, csv_sep);
- fprintf(output, "%*s",
- csv_output ? 0 : -25,
- perf_evsel__name(counter));
-
- if (counter->cgrp)
- fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
-
- print_running(avg_running, avg_enabled);
- fputc('\n', output);
- return;
- }
-
+ if (scaled == -1)
+ avg_running = avg_enabled = 0;
uval = avg * counter->scale;
printout(-1, 0, counter, uval, prefix, avg_running, avg_enabled, avg);
fprintf(output, "\n");
--
2.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 8/9] perf, tools, stat: Remove extra unsupported/not counted handling Andi Kleen <andi@firstfloor.org> - 2015-09-03 01:40 +0200 Re: [PATCH 8/9] perf, tools, stat: Remove extra unsupported/not counted handling Jiri Olsa <jolsa@redhat.com> - 2015-09-04 11:00 +0200 Re: [PATCH 8/9] perf, tools, stat: Remove extra unsupported/not counted handling Jiri Olsa <jolsa@redhat.com> - 2015-09-04 11:00 +0200
csiph-web