ftrace: type cast filter+verifier
authorSteven Rostedt <rostedt@goodmis.org>
Wed, 1 Oct 2008 14:52:51 +0000 (10:52 -0400)
committerIngo Molnar <mingo@elte.hu>
Tue, 14 Oct 2008 08:39:07 +0000 (10:39 +0200)
commit7104f300c5a69b46dda00d898034dd05c9f21739
treea8c885bd61fb1e269f277837b2e521179faf8739
parent797d3712a9dd75c720558612be05f42c031a7bb5
ftrace: type cast filter+verifier

The mmiotrace map had a bug that would typecast the entry from
the trace to the wrong type. That is a known danger of C typecasts,
there's absolutely zero checking done on them.

Help that problem a bit by using a GCC extension to implement a
type filter that restricts the types that a trace record can be
cast into, and by adding a dynamic check (in debug mode) to verify
the type of the entry.

This patch adds a macro to assign all entries of ftrace using the type
of the variable and checking the entry id. The typecasts are now done
in the macro for only those types that it knows about, which should
be all the types that are allowed to be read from the tracer.

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/trace/trace.c
kernel/trace/trace.h
kernel/trace/trace_mmiotrace.c