tracing: Separate out trace events from global variables
authorSteven Rostedt <srostedt@redhat.com>
Fri, 4 May 2012 03:09:03 +0000 (23:09 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Fri, 15 Mar 2013 04:34:40 +0000 (00:34 -0400)
commitae63b31e4d0e2ec09c569306ea46f664508ef717
tree0d40e8fddca53d1776254cd92fc73bc4413ee1f5
parent613f04a0f51e6e68ac6fe571ab79da3c0a5eb4da
tracing: Separate out trace events from global variables

The trace events for ftrace are all defined via global variables.
The arrays of events and event systems are linked to a global list.
This prevents multiple users of the event system (what to enable and
what not to).

By adding descriptors to represent the event/file relation, as well
as to which trace_array descriptor they are associated with, allows
for more than one set of events to be defined. Once the trace events
files have a link between the trace event and the trace_array they
are associated with, we can create multiple trace_arrays that can
record separate events in separate buffers.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
include/linux/ftrace_event.h
include/trace/ftrace.h
kernel/trace/trace.c
kernel/trace/trace.h
kernel/trace/trace_events.c
kernel/trace/trace_events_filter.c