diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-08-12 14:44:59 -0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-08-13 09:05:48 +0200 |
commit | 8f7a0dc51674ad0dd06155291b0aed60d655943c (patch) | |
tree | 48b7ad68aeae4a1287d627908032ce366b98eb00 /tools/perf/builtin-list.c | |
parent | 04da8a43da804723a550f00dd158fd5b5e25ae35 (diff) |
perf list: Fix large list output by using the pager
When /sys/kernel/debug is mounted the list can be imense, so
use the pager like the other tools.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <20090812174459.GB3495@ghostprotocols.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-list.c')
-rw-r--r-- | tools/perf/builtin-list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/builtin-list.c b/tools/perf/builtin-list.c index f990fa8a35c9..d88c6961274c 100644 --- a/tools/perf/builtin-list.c +++ b/tools/perf/builtin-list.c @@ -10,11 +10,12 @@ #include "perf.h" -#include "util/parse-options.h" #include "util/parse-events.h" +#include "util/cache.h" int cmd_list(int argc __used, const char **argv __used, const char *prefix __used) { + setup_pager(); print_events(); return 0; } |