1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Stage 1 of the trace events.
5 * Override the macros in <trace/trace_events.h> to include the following:
7 * struct trace_event_raw_<call> {
8 * struct trace_entry ent;
10 * <type2> <item2>[<len>];
14 * The <type> <item> is created by the __field(type, item) macro or
15 * the __array(type2, item2, len) macro.
16 * We simply do "type item;", and that will create the fields
20 #include <linux/trace_events.h>
22 #ifndef TRACE_SYSTEM_VAR
23 #define TRACE_SYSTEM_VAR TRACE_SYSTEM
26 #define __app__(x, y) str__##x##y
27 #define __app(x, y) __app__(x, y)
29 #define TRACE_SYSTEM_STRING __app(TRACE_SYSTEM_VAR,__trace_system_name)
31 #define TRACE_MAKE_SYSTEM_STR() \
32 static const char TRACE_SYSTEM_STRING[] = \
33 __stringify(TRACE_SYSTEM)
35 TRACE_MAKE_SYSTEM_STR();
37 #undef TRACE_DEFINE_ENUM
38 #define TRACE_DEFINE_ENUM(a) \
39 static struct trace_eval_map __used __initdata \
40 __##TRACE_SYSTEM##_##a = \
42 .system = TRACE_SYSTEM_STRING, \
46 static struct trace_eval_map __used \
47 __attribute__((section("_ftrace_eval_map"))) \
48 *TRACE_SYSTEM##_##a = &__##TRACE_SYSTEM##_##a
50 #undef TRACE_DEFINE_SIZEOF
51 #define TRACE_DEFINE_SIZEOF(a) \
52 static struct trace_eval_map __used __initdata \
53 __##TRACE_SYSTEM##_##a = \
55 .system = TRACE_SYSTEM_STRING, \
56 .eval_string = "sizeof(" #a ")", \
57 .eval_value = sizeof(a) \
59 static struct trace_eval_map __used \
60 __attribute__((section("_ftrace_eval_map"))) \
61 *TRACE_SYSTEM##_##a = &__##TRACE_SYSTEM##_##a
64 * DECLARE_EVENT_CLASS can be used to add a generic function
65 * handlers for events. That is, if all events have the same
66 * parameters and just have distinct trace points.
67 * Each tracepoint can be defined with DEFINE_EVENT and that
68 * will map the DECLARE_EVENT_CLASS to the tracepoint.
70 * TRACE_EVENT is a one to one mapping between tracepoint and template.
73 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
74 DECLARE_EVENT_CLASS(name, \
80 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args));
84 #define __field(type, item) type item;
87 #define __field_ext(type, item, filter_type) type item;
90 #define __field_struct(type, item) type item;
92 #undef __field_struct_ext
93 #define __field_struct_ext(type, item, filter_type) type item;
96 #define __array(type, item, len) type item[len];
98 #undef __dynamic_array
99 #define __dynamic_array(type, item, len) u32 __data_loc_##item;
102 #define __string(item, src) __dynamic_array(char, item, -1)
105 #define __bitmask(item, nr_bits) __dynamic_array(char, item, -1)
107 #undef TP_STRUCT__entry
108 #define TP_STRUCT__entry(args...) args
110 #undef DECLARE_EVENT_CLASS
111 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
112 struct trace_event_raw_##name { \
113 struct trace_entry ent; \
118 static struct trace_event_class event_class_##name;
121 #define DEFINE_EVENT(template, name, proto, args) \
122 static struct trace_event_call __used \
123 __attribute__((__aligned__(4))) event_##name
125 #undef DEFINE_EVENT_FN
126 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \
127 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
129 #undef DEFINE_EVENT_PRINT
130 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
131 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
133 /* Callbacks are meaningless to ftrace. */
134 #undef TRACE_EVENT_FN
135 #define TRACE_EVENT_FN(name, proto, args, tstruct, \
136 assign, print, reg, unreg) \
137 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \
138 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
140 #undef TRACE_EVENT_FN_COND
141 #define TRACE_EVENT_FN_COND(name, proto, args, cond, tstruct, \
142 assign, print, reg, unreg) \
143 TRACE_EVENT_CONDITION(name, PARAMS(proto), PARAMS(args), PARAMS(cond), \
144 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
146 #undef TRACE_EVENT_FLAGS
147 #define TRACE_EVENT_FLAGS(name, value) \
148 __TRACE_EVENT_FLAGS(name, value)
150 #undef TRACE_EVENT_PERF_PERM
151 #define TRACE_EVENT_PERF_PERM(name, expr...) \
152 __TRACE_EVENT_PERF_PERM(name, expr)
154 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
157 * Stage 2 of the trace events.
159 * Include the following:
161 * struct trace_event_data_offsets_<call> {
167 * The __dynamic_array() macro will create each u32 <item>, this is
168 * to keep the offset of each array from the beginning of the event.
169 * The size of an array is also encoded, in the higher 16 bits of <item>.
172 #undef TRACE_DEFINE_ENUM
173 #define TRACE_DEFINE_ENUM(a)
175 #undef TRACE_DEFINE_SIZEOF
176 #define TRACE_DEFINE_SIZEOF(a)
179 #define __field(type, item)
182 #define __field_ext(type, item, filter_type)
184 #undef __field_struct
185 #define __field_struct(type, item)
187 #undef __field_struct_ext
188 #define __field_struct_ext(type, item, filter_type)
191 #define __array(type, item, len)
193 #undef __dynamic_array
194 #define __dynamic_array(type, item, len) u32 item;
197 #define __string(item, src) __dynamic_array(char, item, -1)
200 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
202 #undef DECLARE_EVENT_CLASS
203 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
204 struct trace_event_data_offsets_##call { \
209 #define DEFINE_EVENT(template, name, proto, args)
211 #undef DEFINE_EVENT_PRINT
212 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
213 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
215 #undef TRACE_EVENT_FLAGS
216 #define TRACE_EVENT_FLAGS(event, flag)
218 #undef TRACE_EVENT_PERF_PERM
219 #define TRACE_EVENT_PERF_PERM(event, expr...)
221 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
224 * Stage 3 of the trace events.
226 * Override the macros in <trace/trace_events.h> to include the following:
229 * trace_raw_output_<call>(struct trace_iterator *iter, int flags)
231 * struct trace_seq *s = &iter->seq;
232 * struct trace_event_raw_<call> *field; <-- defined in stage 1
233 * struct trace_entry *entry;
234 * struct trace_seq *p = &iter->tmp_seq;
239 * if (entry->type != event_<call>->event.type) {
241 * return TRACE_TYPE_UNHANDLED;
244 * field = (typeof(field))entry;
247 * ret = trace_seq_printf(s, "%s: ", <call>);
249 * ret = trace_seq_printf(s, <TP_printk> "\n");
251 * return TRACE_TYPE_PARTIAL_LINE;
253 * return TRACE_TYPE_HANDLED;
256 * This is the method used to print the raw event to the trace
257 * output format. Note, this is not needed if the data is read
262 #define __entry field
265 #define TP_printk(fmt, args...) fmt "\n", args
267 #undef __get_dynamic_array
268 #define __get_dynamic_array(field) \
269 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
271 #undef __get_dynamic_array_len
272 #define __get_dynamic_array_len(field) \
273 ((__entry->__data_loc_##field >> 16) & 0xffff)
276 #define __get_str(field) ((char *)__get_dynamic_array(field))
279 #define __get_bitmask(field) \
281 void *__bitmask = __get_dynamic_array(field); \
282 unsigned int __bitmask_size; \
283 __bitmask_size = __get_dynamic_array_len(field); \
284 trace_print_bitmask_seq(p, __bitmask, __bitmask_size); \
288 #define __print_flags(flag, delim, flag_array...) \
290 static const struct trace_print_flags __flags[] = \
291 { flag_array, { -1, NULL }}; \
292 trace_print_flags_seq(p, delim, flag, __flags); \
295 #undef __print_symbolic
296 #define __print_symbolic(value, symbol_array...) \
298 static const struct trace_print_flags symbols[] = \
299 { symbol_array, { -1, NULL }}; \
300 trace_print_symbols_seq(p, value, symbols); \
303 #undef __print_flags_u64
304 #undef __print_symbolic_u64
305 #if BITS_PER_LONG == 32
306 #define __print_flags_u64(flag, delim, flag_array...) \
308 static const struct trace_print_flags_u64 __flags[] = \
309 { flag_array, { -1, NULL } }; \
310 trace_print_flags_seq_u64(p, delim, flag, __flags); \
313 #define __print_symbolic_u64(value, symbol_array...) \
315 static const struct trace_print_flags_u64 symbols[] = \
316 { symbol_array, { -1, NULL } }; \
317 trace_print_symbols_seq_u64(p, value, symbols); \
320 #define __print_flags_u64(flag, delim, flag_array...) \
321 __print_flags(flag, delim, flag_array)
323 #define __print_symbolic_u64(value, symbol_array...) \
324 __print_symbolic(value, symbol_array)
328 #define __print_hex(buf, buf_len) \
329 trace_print_hex_seq(p, buf, buf_len, false)
331 #undef __print_hex_str
332 #define __print_hex_str(buf, buf_len) \
333 trace_print_hex_seq(p, buf, buf_len, true)
336 #define __print_array(array, count, el_size) \
338 BUILD_BUG_ON(el_size != 1 && el_size != 2 && \
339 el_size != 4 && el_size != 8); \
340 trace_print_array_seq(p, array, count, el_size); \
343 #undef DECLARE_EVENT_CLASS
344 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
345 static notrace enum print_line_t \
346 trace_raw_output_##call(struct trace_iterator *iter, int flags, \
347 struct trace_event *trace_event) \
349 struct trace_seq *s = &iter->seq; \
350 struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
351 struct trace_event_raw_##call *field; \
354 field = (typeof(field))iter->ent; \
356 ret = trace_raw_output_prep(iter, trace_event); \
357 if (ret != TRACE_TYPE_HANDLED) \
360 trace_seq_printf(s, print); \
362 return trace_handle_return(s); \
364 static struct trace_event_functions trace_event_type_funcs_##call = { \
365 .trace = trace_raw_output_##call, \
368 #undef DEFINE_EVENT_PRINT
369 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
370 static notrace enum print_line_t \
371 trace_raw_output_##call(struct trace_iterator *iter, int flags, \
372 struct trace_event *event) \
374 struct trace_event_raw_##template *field; \
375 struct trace_entry *entry; \
376 struct trace_seq *p = &iter->tmp_seq; \
380 if (entry->type != event_##call.event.type) { \
382 return TRACE_TYPE_UNHANDLED; \
385 field = (typeof(field))entry; \
388 return trace_output_call(iter, #call, print); \
390 static struct trace_event_functions trace_event_type_funcs_##call = { \
391 .trace = trace_raw_output_##call, \
394 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
397 #define __field_ext(type, item, filter_type) \
398 ret = trace_define_field(event_call, #type, #item, \
399 offsetof(typeof(field), item), \
400 sizeof(field.item), \
401 is_signed_type(type), filter_type); \
405 #undef __field_struct_ext
406 #define __field_struct_ext(type, item, filter_type) \
407 ret = trace_define_field(event_call, #type, #item, \
408 offsetof(typeof(field), item), \
409 sizeof(field.item), \
415 #define __field(type, item) __field_ext(type, item, FILTER_OTHER)
417 #undef __field_struct
418 #define __field_struct(type, item) __field_struct_ext(type, item, FILTER_OTHER)
421 #define __array(type, item, len) \
423 char *type_str = #type"["__stringify(len)"]"; \
424 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
425 BUILD_BUG_ON(len <= 0); \
426 ret = trace_define_field(event_call, type_str, #item, \
427 offsetof(typeof(field), item), \
428 sizeof(field.item), \
429 is_signed_type(type), FILTER_OTHER); \
434 #undef __dynamic_array
435 #define __dynamic_array(type, item, len) \
436 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
437 offsetof(typeof(field), __data_loc_##item), \
438 sizeof(field.__data_loc_##item), \
439 is_signed_type(type), FILTER_OTHER);
442 #define __string(item, src) __dynamic_array(char, item, -1)
445 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
447 #undef DECLARE_EVENT_CLASS
448 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
449 static int notrace __init \
450 trace_event_define_fields_##call(struct trace_event_call *event_call) \
452 struct trace_event_raw_##call field; \
461 #define DEFINE_EVENT(template, name, proto, args)
463 #undef DEFINE_EVENT_PRINT
464 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
465 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
467 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
470 * remember the offset of each array from the beginning of the event.
474 #define __entry entry
477 #define __field(type, item)
480 #define __field_ext(type, item, filter_type)
482 #undef __field_struct
483 #define __field_struct(type, item)
485 #undef __field_struct_ext
486 #define __field_struct_ext(type, item, filter_type)
489 #define __array(type, item, len)
491 #undef __dynamic_array
492 #define __dynamic_array(type, item, len) \
493 __item_length = (len) * sizeof(type); \
494 __data_offsets->item = __data_size + \
495 offsetof(typeof(*entry), __data); \
496 __data_offsets->item |= __item_length << 16; \
497 __data_size += __item_length;
500 #define __string(item, src) __dynamic_array(char, item, \
501 strlen((src) ? (const char *)(src) : "(null)") + 1)
504 * __bitmask_size_in_bytes_raw is the number of bytes needed to hold
505 * num_possible_cpus().
507 #define __bitmask_size_in_bytes_raw(nr_bits) \
508 (((nr_bits) + 7) / 8)
510 #define __bitmask_size_in_longs(nr_bits) \
511 ((__bitmask_size_in_bytes_raw(nr_bits) + \
512 ((BITS_PER_LONG / 8) - 1)) / (BITS_PER_LONG / 8))
515 * __bitmask_size_in_bytes is the number of bytes needed to hold
516 * num_possible_cpus() padded out to the nearest long. This is what
517 * is saved in the buffer, just to be consistent.
519 #define __bitmask_size_in_bytes(nr_bits) \
520 (__bitmask_size_in_longs(nr_bits) * (BITS_PER_LONG / 8))
523 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, \
524 __bitmask_size_in_longs(nr_bits))
526 #undef DECLARE_EVENT_CLASS
527 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
528 static inline notrace int trace_event_get_offsets_##call( \
529 struct trace_event_data_offsets_##call *__data_offsets, proto) \
531 int __data_size = 0; \
532 int __maybe_unused __item_length; \
533 struct trace_event_raw_##call __maybe_unused *entry; \
537 return __data_size; \
541 #define DEFINE_EVENT(template, name, proto, args)
543 #undef DEFINE_EVENT_PRINT
544 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
545 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
547 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
550 * Stage 4 of the trace events.
552 * Override the macros in <trace/trace_events.h> to include the following:
554 * For those macros defined with TRACE_EVENT:
556 * static struct trace_event_call event_<call>;
558 * static void trace_event_raw_event_<call>(void *__data, proto)
560 * struct trace_event_file *trace_file = __data;
561 * struct trace_event_call *event_call = trace_file->event_call;
562 * struct trace_event_data_offsets_<call> __maybe_unused __data_offsets;
563 * unsigned long eflags = trace_file->flags;
564 * enum event_trigger_type __tt = ETT_NONE;
565 * struct ring_buffer_event *event;
566 * struct trace_event_raw_<call> *entry; <-- defined in stage 1
567 * struct ring_buffer *buffer;
568 * unsigned long irq_flags;
572 * if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
573 * if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
574 * event_triggers_call(trace_file, NULL);
575 * if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
579 * local_save_flags(irq_flags);
580 * pc = preempt_count();
582 * __data_size = trace_event_get_offsets_<call>(&__data_offsets, args);
584 * event = trace_event_buffer_lock_reserve(&buffer, trace_file,
585 * event_<call>->event.type,
586 * sizeof(*entry) + __data_size,
590 * entry = ring_buffer_event_data(event);
592 * { <assign>; } <-- Here we assign the entries by the __field and
595 * if (eflags & EVENT_FILE_FL_TRIGGER_COND)
596 * __tt = event_triggers_call(trace_file, entry);
598 * if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT,
599 * &trace_file->flags))
600 * ring_buffer_discard_commit(buffer, event);
601 * else if (!filter_check_discard(trace_file, entry, buffer, event))
602 * trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
605 * event_triggers_post_call(trace_file, __tt);
608 * static struct trace_event ftrace_event_type_<call> = {
609 * .trace = trace_raw_output_<call>, <-- stage 2
612 * static char print_fmt_<call>[] = <TP_printk>;
614 * static struct trace_event_class __used event_class_<template> = {
615 * .system = "<system>",
616 * .define_fields = trace_event_define_fields_<call>,
617 * .fields = LIST_HEAD_INIT(event_class_##call.fields),
618 * .raw_init = trace_event_raw_init,
619 * .probe = trace_event_raw_event_##call,
620 * .reg = trace_event_reg,
623 * static struct trace_event_call event_<call> = {
624 * .class = event_class_<template>,
626 * .tp = &__tracepoint_<call>,
628 * .event = &ftrace_event_type_<call>,
629 * .print_fmt = print_fmt_<call>,
630 * .flags = TRACE_EVENT_FL_TRACEPOINT,
632 * // its only safe to use pointers when doing linker tricks to
633 * // create an array.
634 * static struct trace_event_call __used
635 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
639 #ifdef CONFIG_PERF_EVENTS
641 #define _TRACE_PERF_PROTO(call, proto) \
642 static notrace void \
643 perf_trace_##call(void *__data, proto);
645 #define _TRACE_PERF_INIT(call) \
646 .perf_probe = perf_trace_##call,
649 #define _TRACE_PERF_PROTO(call, proto)
650 #define _TRACE_PERF_INIT(call)
651 #endif /* CONFIG_PERF_EVENTS */
654 #define __entry entry
657 #define __field(type, item)
659 #undef __field_struct
660 #define __field_struct(type, item)
663 #define __array(type, item, len)
665 #undef __dynamic_array
666 #define __dynamic_array(type, item, len) \
667 __entry->__data_loc_##item = __data_offsets.item;
670 #define __string(item, src) __dynamic_array(char, item, -1)
673 #define __assign_str(dst, src) \
674 strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
677 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
680 #define __get_bitmask(field) (char *)__get_dynamic_array(field)
682 #undef __assign_bitmask
683 #define __assign_bitmask(dst, src, nr_bits) \
684 memcpy(__get_bitmask(dst), (src), __bitmask_size_in_bytes(nr_bits))
686 #undef TP_fast_assign
687 #define TP_fast_assign(args...) args
690 #define __perf_count(c) (c)
693 #define __perf_task(t) (t)
695 #undef DECLARE_EVENT_CLASS
696 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
698 static notrace void \
699 trace_event_raw_event_##call(void *__data, proto) \
701 struct trace_event_file *trace_file = __data; \
702 struct trace_event_data_offsets_##call __maybe_unused __data_offsets;\
703 struct trace_event_buffer fbuffer; \
704 struct trace_event_raw_##call *entry; \
707 if (trace_trigger_soft_disabled(trace_file)) \
710 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \
712 entry = trace_event_buffer_reserve(&fbuffer, trace_file, \
713 sizeof(*entry) + __data_size); \
722 trace_event_buffer_commit(&fbuffer); \
725 * The ftrace_test_probe is compiled out, it is only here as a build time check
726 * to make sure that if the tracepoint handling changes, the ftrace probe will
727 * fail to compile unless it too is updated.
731 #define DEFINE_EVENT(template, call, proto, args) \
732 static inline void ftrace_test_probe_##call(void) \
734 check_trace_callback_type_##call(trace_event_raw_event_##template); \
737 #undef DEFINE_EVENT_PRINT
738 #define DEFINE_EVENT_PRINT(template, name, proto, args, print)
740 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
746 #undef __print_symbolic
748 #undef __print_hex_str
749 #undef __get_dynamic_array
750 #undef __get_dynamic_array_len
756 #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
758 #undef DECLARE_EVENT_CLASS
759 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
760 _TRACE_PERF_PROTO(call, PARAMS(proto)); \
761 static char print_fmt_##call[] = print; \
762 static struct trace_event_class __used __refdata event_class_##call = { \
763 .system = TRACE_SYSTEM_STRING, \
764 .define_fields = trace_event_define_fields_##call, \
765 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
766 .raw_init = trace_event_raw_init, \
767 .probe = trace_event_raw_event_##call, \
768 .reg = trace_event_reg, \
769 _TRACE_PERF_INIT(call) \
773 #define DEFINE_EVENT(template, call, proto, args) \
775 static struct trace_event_call __used event_##call = { \
776 .class = &event_class_##template, \
778 .tp = &__tracepoint_##call, \
780 .event.funcs = &trace_event_type_funcs_##template, \
781 .print_fmt = print_fmt_##template, \
782 .flags = TRACE_EVENT_FL_TRACEPOINT, \
784 static struct trace_event_call __used \
785 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
787 #undef DEFINE_EVENT_PRINT
788 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
790 static char print_fmt_##call[] = print; \
792 static struct trace_event_call __used event_##call = { \
793 .class = &event_class_##template, \
795 .tp = &__tracepoint_##call, \
797 .event.funcs = &trace_event_type_funcs_##call, \
798 .print_fmt = print_fmt_##call, \
799 .flags = TRACE_EVENT_FL_TRACEPOINT, \
801 static struct trace_event_call __used \
802 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
804 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)