aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace/trace_events.h
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2009-02-27 17:36:06 -0500
committerSteven Rostedt <srostedt@redhat.com>2009-02-28 02:58:50 -0500
commiteb594e45f6979cd10b18d87f7b3f02119e00a108 (patch)
treeeb27cea51205ad527a0b1582c9b02d434f7129bc /include/trace/trace_events.h
parenttracing: replace kzalloc with kcalloc (diff)
downloadlinux-dev-eb594e45f6979cd10b18d87f7b3f02119e00a108.tar.xz
linux-dev-eb594e45f6979cd10b18d87f7b3f02119e00a108.zip
tracing: move trace point formats to files in include/trace directory
Impact: clean up To further facilitate the ease of adding trace points for developers, this patch creates include/trace/trace_events.h and include/trace/trace_event_types.h. The former file will hold the trace/<type>.h files and the latter will hold the trace/<type>_event_types.h files. To create new tracepoints and to have them automatically appear in the event tracer, a developer makes the trace/<type>.h file which includes <linux/tracepoint.h> and the trace/<type>_event_types.h file. The trace/<type>_event_types.h file will hold the TRACE_FORMAT macros. Then add the trace/<type>.h file to trace/trace_events.h, and add the trace/<type>_event_types.h to the trace_event_types.h file. No need to modify files elsewhere. Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'include/trace/trace_events.h')
-rw-r--r--include/trace/trace_events.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/trace/trace_events.h b/include/trace/trace_events.h
new file mode 100644
index 000000000000..ea2ef2051762
--- /dev/null
+++ b/include/trace/trace_events.h
@@ -0,0 +1,4 @@
+/* trace/<type>.h here */
+
+#include <trace/sched.h>
+#include <trace/irq.h>