diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-08-10 05:16:52 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-08-10 05:33:09 -0400 |
commit | a044560c3a1f0ad75ce685c1ed7604820b9ed319 (patch) | |
tree | 51fa4979ad02d388b35e1a56020bfbd8c2e5329d /include/trace/ftrace.h | |
parent | c0a8865e32c8d1a562db38e06ef31ef23282f646 (diff) |
perf_counter: Correct PERF_SAMPLE_RAW output
PERF_SAMPLE_* output switches should unconditionally output the
correct format, as they are the only way to unambiguously parse
the PERF_EVENT_SAMPLE data.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1249896447.17467.74.camel@twins>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/trace/ftrace.h')
-rw-r--r-- | include/trace/ftrace.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h index 7fb16d90e7b1..7167b9b97da2 100644 --- a/include/trace/ftrace.h +++ b/include/trace/ftrace.h | |||
@@ -685,7 +685,8 @@ static void ftrace_profile_##call(proto) \ | |||
685 | pc = preempt_count(); \ | 685 | pc = preempt_count(); \ |
686 | \ | 686 | \ |
687 | __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \ | 687 | __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \ |
688 | __entry_size = ALIGN(__data_size + sizeof(*entry), sizeof(u64));\ | 688 | __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\ |
689 | sizeof(u64)); \ | ||
689 | \ | 690 | \ |
690 | do { \ | 691 | do { \ |
691 | char raw_data[__entry_size]; \ | 692 | char raw_data[__entry_size]; \ |