tracing: flip the TP_printk and TP_fast_assign in the TRACE_EVENT macro
[linux-2.6] / kernel / trace / trace_events_stage_1.h
1 /*
2  * Stage 1 of the trace events.
3  *
4  * Override the macros in <trace/trace_event_types.h> to include the following:
5  *
6  * struct ftrace_raw_<call> {
7  *      struct trace_entry              ent;
8  *      <type>                          <item>;
9  *      [...]
10  * };
11  *
12  * The <type> <item> is created by the TRACE_FIELD(type, item, assign)
13  * macro. We simply do "type item;", and that will create the fields
14  * in the structure.
15  */
16
17 #undef TRACE_FORMAT
18 #define TRACE_FORMAT(call, proto, args, fmt)
19
20 #undef __array
21 #define __array(type, item, len)        type    item[len];
22
23 #undef __field
24 #define __field(type, item)             type    item;
25
26 #undef TP_STRUCT__entry
27 #define TP_STRUCT__entry(args...) args
28
29 #undef TRACE_EVENT
30 #define TRACE_EVENT(name, proto, args, tstruct, assign, print)  \
31         struct ftrace_raw_##name {                              \
32                 struct trace_entry      ent;                    \
33                 tstruct                                         \
34         };                                                      \
35         static struct ftrace_event_call event_##name
36
37 #include <trace/trace_event_types.h>