diff options
author | Tom Zanussi <tzanussi@gmail.com> | 2010-04-02 00:59:20 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-04-14 05:56:07 -0400 |
commit | cd19a035f3b63fee6dcbdb5371c4b22276f7dc8c (patch) | |
tree | 0d0f6ce913a070372854d524bca068032dd3ff8f /tools/perf/builtin-report.c | |
parent | 2c46dbb517a10b18d459e6ceffefde5bfb290cf6 (diff) |
perf: Convert perf event types into event type events
Bypasses the event type 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-7-git-send-email-tzanussi@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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index f0486ce591a9..e59d0127d5e3 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -268,6 +268,7 @@ static struct perf_event_ops event_ops = { | |||
268 | .lost = event__process_lost, | 268 | .lost = event__process_lost, |
269 | .read = process_read_event, | 269 | .read = process_read_event, |
270 | .attr = event__process_attr, | 270 | .attr = event__process_attr, |
271 | .event_type = event__process_event_type, | ||
271 | }; | 272 | }; |
272 | 273 | ||
273 | extern volatile int session_done; | 274 | extern volatile int session_done; |