diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2009-08-16 19:56:54 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-08-16 19:59:13 +0200 |
commit | 0f25bfc8d8b31a4ac8e4ff6cbc3911fb7092a4a7 (patch) | |
tree | f37cc9878d68ec96b2f8d25389ceadbb69c183d4 /tools/perf/builtin-report.c | |
parent | 2cec19d9d0716f8d68f1c5a87667d0387d4d252d (diff) | |
download | linux-3.10-0f25bfc8d8b31a4ac8e4ff6cbc3911fb7092a4a7.tar.gz linux-3.10-0f25bfc8d8b31a4ac8e4ff6cbc3911fb7092a4a7.tar.bz2 linux-3.10-0f25bfc8d8b31a4ac8e4ff6cbc3911fb7092a4a7.zip |
perf tools: Put the show mode into the event headers files
Annotate and report share the same flags to filter events
considering their context (kernel, user, hypervisor).
Both tools have their own definitions of these flags. Factorize
them out into the event headers file.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
LKML-Reference: <1250445414-29237-1-git-send-email-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index e104ed3c841..05d52ff4c33 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -27,10 +27,6 @@ #include "util/thread.h" -#define SHOW_KERNEL 1 -#define SHOW_USER 2 -#define SHOW_HV 4 - static char const *input_name = "perf.data"; static char default_sort_order[] = "comm,dso,symbol"; |