diff options
author | Tom Zanussi <tzanussi@gmail.com> | 2010-04-02 00:59:22 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-04-14 05:56:08 -0400 |
commit | c7929e4727e8ff2d6fc8327188820e3b1c2f1dc3 (patch) | |
tree | 59f85cc7a5a381761f1583624f1ce2d62c060e5d /tools/perf/util/event.h | |
parent | 9215545e99d8c0b27323df2de504f4294bf5e407 (diff) |
perf: Convert perf header build_ids into build_id events
Bypasses the build_id perf header code and replaces it with a
synthesized event and processing function that accomplishes the
same thing, used when reading/writing perf data to/from a pipe.
Signed-off-by: Tom Zanussi <tzanussi@gmail.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: fweisbec@gmail.com
Cc: rostedt@goodmis.org
Cc: k-keiichi@bx.jp.nec.com
Cc: acme@ghostprotocols.net
LKML-Reference: <1270184365-8281-9-git-send-email-tzanussi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r-- | tools/perf/util/event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index b896a177ea41..e5740ea140ab 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h | |||
@@ -87,6 +87,7 @@ enum perf_header_event_type { /* above any possible kernel type */ | |||
87 | PERF_RECORD_HEADER_ATTR = 64, | 87 | PERF_RECORD_HEADER_ATTR = 64, |
88 | PERF_RECORD_HEADER_EVENT_TYPE = 65, | 88 | PERF_RECORD_HEADER_EVENT_TYPE = 65, |
89 | PERF_RECORD_HEADER_TRACING_DATA = 66, | 89 | PERF_RECORD_HEADER_TRACING_DATA = 66, |
90 | PERF_RECORD_HEADER_BUILD_ID = 67, | ||
90 | PERF_RECORD_HEADER_MAX | 91 | PERF_RECORD_HEADER_MAX |
91 | }; | 92 | }; |
92 | 93 | ||
@@ -125,6 +126,7 @@ typedef union event_union { | |||
125 | struct attr_event attr; | 126 | struct attr_event attr; |
126 | struct event_type_event event_type; | 127 | struct event_type_event event_type; |
127 | struct tracing_data_event tracing_data; | 128 | struct tracing_data_event tracing_data; |
129 | struct build_id_event build_id; | ||
128 | } event_t; | 130 | } event_t; |
129 | 131 | ||
130 | struct events_stats { | 132 | struct events_stats { |