From: Ingo Molnar Date: Thu, 4 Jun 2009 12:21:16 +0000 (+0200) Subject: perf report: Print out the total number of events X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=05ca061eb9704ad9b0739f88046276792b75f2c1;p=linux-edison.git perf report: Print out the total number of events So that the statistical quality of the profile can be estimated at a glance. Cc: Peter Zijlstra Cc: Mike Galbraith Cc: Paul Mackerras Cc: Corey Ashford Cc: Marcelo Tosatti Cc: Arnaldo Carvalho de Melo Cc: Thomas Gleixner LKML-Reference: Signed-off-by: Ingo Molnar --- diff --git a/Documentation/perf_counter/builtin-report.c b/Documentation/perf_counter/builtin-report.c index 15fe9dae792..be392e0f77c 100644 --- a/Documentation/perf_counter/builtin-report.c +++ b/Documentation/perf_counter/builtin-report.c @@ -722,6 +722,8 @@ static size_t output__fprintf(FILE *fp, uint64_t total_samples) size_t ret = 0; fprintf(fp, "#\n"); + fprintf(fp, "# (%Ld profiler events)\n", (__u64)total_samples); + fprintf(fp, "#\n"); fprintf(fp, "# Overhead"); list_for_each_entry(se, &hist_entry__sort_list, list)