diff options
| -rw-r--r-- | tools/perf/builtin-top.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index f88a2630e1f..0b07cc30b66 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,  		 */  		if (al.map == machine->vmlinux_maps[MAP__FUNCTION] &&  		    RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) { -			pr_err("The %s file can't be used\n", -			       symbol_conf.vmlinux_name); +			ui__warning("The %s file can't be used\n", +				    symbol_conf.vmlinux_name); +			exit_browser(0);  			exit(1);  		} | 
