From: Arnaldo Carvalho de Melo Date: Fri, 21 May 2010 17:19:24 +0000 (-0300) Subject: perf report: Don't start the TUI if -D is used X-Git-Tag: v2.6.35-rc1~30^2~4^2~2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=0e8dc2597487848bb076d6b3d8440c85dde521e7;p=~emulex%2Finfiniband.git perf report: Don't start the TUI if -D is used One day we'll have support for the "dump raw trace in ASCII" in the TUI frontend, but till then, use the tty code. Reported-by: Peter Zijlstra Cc: Frédéric Weisbecker Cc: Mike Galbraith Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Stephane Eranian Cc: Tom Zanussi LKML-Reference: Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index a7b8760e401..2c39bd35897 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -484,7 +484,9 @@ int cmd_report(int argc, const char **argv, const char *prefix __used) { argc = parse_options(argc, argv, options, report_usage, 0); - if (strcmp(input_name, "-") != 0) + if (dump_trace) + setup_pager(); + else if (strcmp(input_name, "-") != 0) setup_browser(); /* * Only in the newt browser we are doing integrated annotation,