diff options
author | Eric B Munson <ebmunson@us.ibm.com> | 2010-03-05 12:51:07 -0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-03-10 13:53:48 +0100 |
commit | cb8f09393646c5058056db771583c86e0ed1d92f (patch) | |
tree | bca8f832cbb72c87e2ae94cd22ba9b00398223a3 /tools/perf/util/event.h | |
parent | d403d0acc9c5afa679a3f61e71489530d7fa0606 (diff) |
perf session: Add storage for seperating event types in report
This patch adds the structures necessary to count each event
type independently in perf report.
Signed-off-by: Eric B Munson <ebmunson@us.ibm.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1267804269-22660-4-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r-- | tools/perf/util/event.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index 50a7132887f..a33b94952e3 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h @@ -99,6 +99,15 @@ struct events_stats { u64 lost; }; +struct event_stat_id { + struct rb_node rb_node; + struct rb_root hists; + struct events_stats stats; + u64 config; + u64 event_stream; + u32 type; +}; + void event__print_totals(void); struct perf_session; |