aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-report.c
diff options
context:
space:
mode:
authorAshay Rane <ashay.rane@tacc.utexas.edu>2012-04-05 22:01:01 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-04-07 16:29:41 -0400
commitcc68628096b813010f30f69fcf7d1832d18fa767 (patch)
treeb21bcd709fdf69d127cb34005d6ec20b2df9fb62 /tools/perf/builtin-report.c
parent08be4eeda40ea813fa326036fdaf8fa7667eb021 (diff)
perf report: Correct display of samples and events in header
This patch prints the number of samples and the count of performance events separately. This allows comparing performance of different applications with each other. Previously, the sample count was displayed against an 'Events:' heading. With this patch, the header now reads (for example): Samples: 5K of event 'instructions' Event count (approx.): 2993026545 The patch covers both the stdio and the browser interface. Signed-off-by: Ashay Rane <ashay.rane@tacc.utexas.edu> [ committer note: Fixed wrt e7f01d1 ] Link: http://lkml.kernel.org/n/tip-h4nfjm8msedlk8gxkzivfh5y@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r--tools/perf/builtin-report.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 2e317438980b..cec2b8cee80c 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -296,12 +296,15 @@ static size_t hists__fprintf_nr_sample_events(struct hists *self,
296{ 296{
297 size_t ret; 297 size_t ret;
298 char unit; 298 char unit;
299 unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE]; 299 unsigned long nr_samples = self->stats.nr_events[PERF_RECORD_SAMPLE];
300 u64 nr_events = self->stats.total_period;
300 301
301 nr_events = convert_unit(nr_events, &unit); 302 nr_samples = convert_unit(nr_samples, &unit);
302 ret = fprintf(fp, "# Events: %lu%c", nr_events, unit); 303 ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
303 if (evname != NULL) 304 if (evname != NULL)
304 ret += fprintf(fp, " %s", evname); 305 ret += fprintf(fp, " of event '%s'", evname);
306
307 ret += fprintf(fp, "\n# Event count (approx.): %lu", nr_events);
305 return ret + fprintf(fp, "\n#\n"); 308 return ret + fprintf(fp, "\n#\n");
306} 309}
307 310