aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2011-02-17 11:40:46 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-02-17 11:40:46 -0500
commit74cfc17dc1a69c37ce6c8a76c1ce84bcb796eb0e (patch)
tree81b87743f35b80f30b63a8d5be16c2152934ece1 /tools
parent712a4b6049724278121d56aba683151d86c8c35a (diff)
perf report: Tell the user when a perf.data file has no samples
[root@emilia ~]# perf report --stdio The perf.data file has no samples! [root@emilia ~]# The TUI shows a popup warning message with the same message. Reported-by: Ingo Molnar <mingo@elte.hu> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Tom Zanussi <tzanussi@gmail.com> LKML-Reference: <new-submission> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/builtin-report.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index f9a99a1ce609..dddcc7ea2bec 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -350,6 +350,12 @@ static int __cmd_report(void)
350 perf_session__fprintf_dsos(session, stdout); 350 perf_session__fprintf_dsos(session, stdout);
351 351
352 next = rb_first(&session->hists_tree); 352 next = rb_first(&session->hists_tree);
353
354 if (next == NULL) {
355 ui__warning("The %s file has no samples!\n", input_name);
356 goto out_delete;
357 }
358
353 while (next) { 359 while (next) {
354 struct hists *hists; 360 struct hists *hists;
355 361