diff options
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 24d20e7d125a..c4f3a08f7c48 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -224,7 +224,12 @@ static int __cmd_report(void) | |||
224 | 224 | ||
225 | perf_session__collapse_resort(session); | 225 | perf_session__collapse_resort(session); |
226 | perf_session__output_resort(session, session->events_stats.total); | 226 | perf_session__output_resort(session, session->events_stats.total); |
227 | fprintf(stdout, "# Samples: %ld\n#\n", session->events_stats.total); | ||
227 | perf_session__fprintf_hists(session, stdout); | 228 | perf_session__fprintf_hists(session, stdout); |
229 | if (sort_order == default_sort_order && | ||
230 | parent_pattern == default_parent_pattern) | ||
231 | fprintf(stdout, "#\n# (For a higher level overview, try: perf report --sort comm,dso)\n#\n"); | ||
232 | |||
228 | if (show_threads) { | 233 | if (show_threads) { |
229 | bool raw_printing_style = !strcmp(pretty_printing_style, "raw"); | 234 | bool raw_printing_style = !strcmp(pretty_printing_style, "raw"); |
230 | perf_read_values_display(stdout, &show_threads_values, | 235 | perf_read_values_display(stdout, &show_threads_values, |