aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2011-03-01 08:27:27 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-03-01 08:27:27 -0500
commit374cfe56892701f062586d6a6de6cb71777a4184 (patch)
tree434530da1f0b12aae312e1d9287529ec290f13dc /tools
parenta1ceb741cf86ef433006379742db81c00b450bae (diff)
perf top: Fix reporting of invalid --vmlinux
Using ui__warning, that will, in --tui, show a window with the message, waiting for the user to press Ok. Also run exit_browser() to let newt do its final cleaning of the screen. 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: 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-top.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index f88a2630e1fc..0b07cc30b669 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -740,8 +740,9 @@ static void perf_event__process_sample(const union perf_event *event,
740 */ 740 */
741 if (al.map == machine->vmlinux_maps[MAP__FUNCTION] && 741 if (al.map == machine->vmlinux_maps[MAP__FUNCTION] &&
742 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) { 742 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) {
743 pr_err("The %s file can't be used\n", 743 ui__warning("The %s file can't be used\n",
744 symbol_conf.vmlinux_name); 744 symbol_conf.vmlinux_name);
745 exit_browser(0);
745 exit(1); 746 exit(1);
746 } 747 }
747 748