1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Stage 1 of the trace events.
5 * Override the macros in the event tracepoint header <trace/events/XXX.h>
6 * to include the following:
8 * struct trace_event_raw_<call> {
9 * struct trace_entry ent;
11 * <type2> <item2>[<len>];
15 * The <type> <item> is created by the __field(type, item) macro or
16 * the __array(type2, item2, len) macro.
17 * We simply do "type item;", and that will create the fields
21 #include <linux/trace_events.h>
23 #ifndef TRACE_SYSTEM_VAR
24 #define TRACE_SYSTEM_VAR TRACE_SYSTEM
27 #define __app__(x, y) str__##x##y
28 #define __app(x, y) __app__(x, y)
30 #define TRACE_SYSTEM_STRING __app(TRACE_SYSTEM_VAR,__trace_system_name)
32 #define TRACE_MAKE_SYSTEM_STR() \
33 static const char TRACE_SYSTEM_STRING[] = \
34 __stringify(TRACE_SYSTEM)
36 TRACE_MAKE_SYSTEM_STR();
38 #undef TRACE_DEFINE_ENUM
39 #define TRACE_DEFINE_ENUM(a) \
40 static struct trace_eval_map __used __initdata \
41 __##TRACE_SYSTEM##_##a = \
43 .system = TRACE_SYSTEM_STRING, \
47 static struct trace_eval_map __used \
48 __attribute__((section("_ftrace_eval_map"))) \
49 *TRACE_SYSTEM##_##a = &__##TRACE_SYSTEM##_##a
51 #undef TRACE_DEFINE_SIZEOF
52 #define TRACE_DEFINE_SIZEOF(a) \
53 static struct trace_eval_map __used __initdata \
54 __##TRACE_SYSTEM##_##a = \
56 .system = TRACE_SYSTEM_STRING, \
57 .eval_string = "sizeof(" #a ")", \
58 .eval_value = sizeof(a) \
60 static struct trace_eval_map __used \
61 __attribute__((section("_ftrace_eval_map"))) \
62 *TRACE_SYSTEM##_##a = &__##TRACE_SYSTEM##_##a
65 * DECLARE_EVENT_CLASS can be used to add a generic function
66 * handlers for events. That is, if all events have the same
67 * parameters and just have distinct trace points.
68 * Each tracepoint can be defined with DEFINE_EVENT and that
69 * will map the DECLARE_EVENT_CLASS to the tracepoint.
71 * TRACE_EVENT is a one to one mapping between tracepoint and template.
74 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
75 DECLARE_EVENT_CLASS(name, \
81 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args));
85 #define __field(type, item) type item;
88 #define __field_ext(type, item, filter_type) type item;
91 #define __field_struct(type, item) type item;
93 #undef __field_struct_ext
94 #define __field_struct_ext(type, item, filter_type) type item;
97 #define __array(type, item, len) type item[len];
99 #undef __dynamic_array
100 #define __dynamic_array(type, item, len) u32 __data_loc_##item;
103 #define __string(item, src) __dynamic_array(char, item, -1)
106 #define __bitmask(item, nr_bits) __dynamic_array(char, item, -1)
108 #undef TP_STRUCT__entry
109 #define TP_STRUCT__entry(args...) args
111 #undef DECLARE_EVENT_CLASS
112 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
113 struct trace_event_raw_##name { \
114 struct trace_entry ent; \
119 static struct trace_event_class event_class_##name;
122 #define DEFINE_EVENT(template, name, proto, args) \
123 static struct trace_event_call __used \
124 __attribute__((__aligned__(4))) event_##name
126 #undef DEFINE_EVENT_FN
127 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \
128 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
130 #undef DEFINE_EVENT_PRINT
131 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
132 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
134 /* Callbacks are meaningless to ftrace. */
135 #undef TRACE_EVENT_FN
136 #define TRACE_EVENT_FN(name, proto, args, tstruct, \
137 assign, print, reg, unreg) \
138 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \
139 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
141 #undef TRACE_EVENT_FN_COND
142 #define TRACE_EVENT_FN_COND(name, proto, args, cond, tstruct, \
143 assign, print, reg, unreg) \
144 TRACE_EVENT_CONDITION(name, PARAMS(proto), PARAMS(args), PARAMS(cond), \
145 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
147 #undef TRACE_EVENT_FLAGS
148 #define TRACE_EVENT_FLAGS(name, value) \
149 __TRACE_EVENT_FLAGS(name, value)
151 #undef TRACE_EVENT_PERF_PERM
152 #define TRACE_EVENT_PERF_PERM(name, expr...) \
153 __TRACE_EVENT_PERF_PERM(name, expr)
155 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
158 * Stage 2 of the trace events.
160 * Include the following:
162 * struct trace_event_data_offsets_<call> {
168 * The __dynamic_array() macro will create each u32 <item>, this is
169 * to keep the offset of each array from the beginning of the event.
170 * The size of an array is also encoded, in the higher 16 bits of <item>.
173 #undef TRACE_DEFINE_ENUM
174 #define TRACE_DEFINE_ENUM(a)
176 #undef TRACE_DEFINE_SIZEOF
177 #define TRACE_DEFINE_SIZEOF(a)
180 #define __field(type, item)
183 #define __field_ext(type, item, filter_type)
185 #undef __field_struct
186 #define __field_struct(type, item)
188 #undef __field_struct_ext
189 #define __field_struct_ext(type, item, filter_type)
192 #define __array(type, item, len)
194 #undef __dynamic_array
195 #define __dynamic_array(type, item, len) u32 item;
198 #define __string(item, src) __dynamic_array(char, item, -1)
201 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
203 #undef DECLARE_EVENT_CLASS
204 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
205 struct trace_event_data_offsets_##call { \
210 #define DEFINE_EVENT(template, name, proto, args)
212 #undef DEFINE_EVENT_PRINT
213 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
214 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
216 #undef TRACE_EVENT_FLAGS
217 #define TRACE_EVENT_FLAGS(event, flag)
219 #undef TRACE_EVENT_PERF_PERM
220 #define TRACE_EVENT_PERF_PERM(event, expr...)
222 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
225 * Stage 3 of the trace events.
227 * Override the macros in the event tracepoint header <trace/events/XXX.h>
228 * to include the following:
231 * trace_raw_output_<call>(struct trace_iterator *iter, int flags)
233 * struct trace_seq *s = &iter->seq;
234 * struct trace_event_raw_<call> *field; <-- defined in stage 1
235 * struct trace_entry *entry;
236 * struct trace_seq *p = &iter->tmp_seq;
241 * if (entry->type != event_<call>->event.type) {
243 * return TRACE_TYPE_UNHANDLED;
246 * field = (typeof(field))entry;
249 * ret = trace_seq_printf(s, "%s: ", <call>);
251 * ret = trace_seq_printf(s, <TP_printk> "\n");
253 * return TRACE_TYPE_PARTIAL_LINE;
255 * return TRACE_TYPE_HANDLED;
258 * This is the method used to print the raw event to the trace
259 * output format. Note, this is not needed if the data is read
264 #define __entry field
267 #define TP_printk(fmt, args...) fmt "\n", args
269 #undef __get_dynamic_array
270 #define __get_dynamic_array(field) \
271 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
273 #undef __get_dynamic_array_len
274 #define __get_dynamic_array_len(field) \
275 ((__entry->__data_loc_##field >> 16) & 0xffff)
278 #define __get_str(field) ((char *)__get_dynamic_array(field))
281 #define __get_bitmask(field) \
283 void *__bitmask = __get_dynamic_array(field); \
284 unsigned int __bitmask_size; \
285 __bitmask_size = __get_dynamic_array_len(field); \
286 trace_print_bitmask_seq(p, __bitmask, __bitmask_size); \
290 #define __print_flags(flag, delim, flag_array...) \
292 static const struct trace_print_flags __flags[] = \
293 { flag_array, { -1, NULL }}; \
294 trace_print_flags_seq(p, delim, flag, __flags); \
297 #undef __print_symbolic
298 #define __print_symbolic(value, symbol_array...) \
300 static const struct trace_print_flags symbols[] = \
301 { symbol_array, { -1, NULL }}; \
302 trace_print_symbols_seq(p, value, symbols); \
305 #undef __print_flags_u64
306 #undef __print_symbolic_u64
307 #if BITS_PER_LONG == 32
308 #define __print_flags_u64(flag, delim, flag_array...) \
310 static const struct trace_print_flags_u64 __flags[] = \
311 { flag_array, { -1, NULL } }; \
312 trace_print_flags_seq_u64(p, delim, flag, __flags); \
315 #define __print_symbolic_u64(value, symbol_array...) \
317 static const struct trace_print_flags_u64 symbols[] = \
318 { symbol_array, { -1, NULL } }; \
319 trace_print_symbols_seq_u64(p, value, symbols); \
322 #define __print_flags_u64(flag, delim, flag_array...) \
323 __print_flags(flag, delim, flag_array)
325 #define __print_symbolic_u64(value, symbol_array...) \
326 __print_symbolic(value, symbol_array)
330 #define __print_hex(buf, buf_len) \
331 trace_print_hex_seq(p, buf, buf_len, false)
333 #undef __print_hex_str
334 #define __print_hex_str(buf, buf_len) \
335 trace_print_hex_seq(p, buf, buf_len, true)
338 #define __print_array(array, count, el_size) \
340 BUILD_BUG_ON(el_size != 1 && el_size != 2 && \
341 el_size != 4 && el_size != 8); \
342 trace_print_array_seq(p, array, count, el_size); \
345 #undef __print_hex_dump
346 #define __print_hex_dump(prefix_str, prefix_type, \
347 rowsize, groupsize, buf, len, ascii) \
348 trace_print_hex_dump_seq(p, prefix_str, prefix_type, \
349 rowsize, groupsize, buf, len, ascii)
351 #undef DECLARE_EVENT_CLASS
352 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
353 static notrace enum print_line_t \
354 trace_raw_output_##call(struct trace_iterator *iter, int flags, \
355 struct trace_event *trace_event) \
357 struct trace_seq *s = &iter->seq; \
358 struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
359 struct trace_event_raw_##call *field; \
362 field = (typeof(field))iter->ent; \
364 ret = trace_raw_output_prep(iter, trace_event); \
365 if (ret != TRACE_TYPE_HANDLED) \
368 trace_seq_printf(s, print); \
370 return trace_handle_return(s); \
372 static struct trace_event_functions trace_event_type_funcs_##call = { \
373 .trace = trace_raw_output_##call, \
376 #undef DEFINE_EVENT_PRINT
377 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
378 static notrace enum print_line_t \
379 trace_raw_output_##call(struct trace_iterator *iter, int flags, \
380 struct trace_event *event) \
382 struct trace_event_raw_##template *field; \
383 struct trace_entry *entry; \
384 struct trace_seq *p = &iter->tmp_seq; \
388 if (entry->type != event_##call.event.type) { \
390 return TRACE_TYPE_UNHANDLED; \
393 field = (typeof(field))entry; \
396 return trace_output_call(iter, #call, print); \
398 static struct trace_event_functions trace_event_type_funcs_##call = { \
399 .trace = trace_raw_output_##call, \
402 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
405 #define __field_ext(_type, _item, _filter_type) { \
406 .type = #_type, .name = #_item, \
407 .size = sizeof(_type), .align = __alignof__(_type), \
408 .is_signed = is_signed_type(_type), .filter_type = _filter_type },
410 #undef __field_struct_ext
411 #define __field_struct_ext(_type, _item, _filter_type) { \
412 .type = #_type, .name = #_item, \
413 .size = sizeof(_type), .align = __alignof__(_type), \
414 0, .filter_type = _filter_type },
417 #define __field(type, item) __field_ext(type, item, FILTER_OTHER)
419 #undef __field_struct
420 #define __field_struct(type, item) __field_struct_ext(type, item, FILTER_OTHER)
423 #define __array(_type, _item, _len) { \
424 .type = #_type"["__stringify(_len)"]", .name = #_item, \
425 .size = sizeof(_type[_len]), .align = __alignof__(_type), \
426 .is_signed = is_signed_type(_type), .filter_type = FILTER_OTHER },
428 #undef __dynamic_array
429 #define __dynamic_array(_type, _item, _len) { \
430 .type = "__data_loc " #_type "[]", .name = #_item, \
431 .size = 4, .align = 4, \
432 .is_signed = is_signed_type(_type), .filter_type = FILTER_OTHER },
435 #define __string(item, src) __dynamic_array(char, item, -1)
438 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
440 #undef DECLARE_EVENT_CLASS
441 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
442 static struct trace_event_fields trace_event_fields_##call[] = { \
447 #define DEFINE_EVENT(template, name, proto, args)
449 #undef DEFINE_EVENT_PRINT
450 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
451 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
453 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
456 * remember the offset of each array from the beginning of the event.
460 #define __entry entry
463 #define __field(type, item)
466 #define __field_ext(type, item, filter_type)
468 #undef __field_struct
469 #define __field_struct(type, item)
471 #undef __field_struct_ext
472 #define __field_struct_ext(type, item, filter_type)
475 #define __array(type, item, len)
477 #undef __dynamic_array
478 #define __dynamic_array(type, item, len) \
479 __item_length = (len) * sizeof(type); \
480 __data_offsets->item = __data_size + \
481 offsetof(typeof(*entry), __data); \
482 __data_offsets->item |= __item_length << 16; \
483 __data_size += __item_length;
486 #define __string(item, src) __dynamic_array(char, item, \
487 strlen((src) ? (const char *)(src) : "(null)") + 1)
490 * __bitmask_size_in_bytes_raw is the number of bytes needed to hold
491 * num_possible_cpus().
493 #define __bitmask_size_in_bytes_raw(nr_bits) \
494 (((nr_bits) + 7) / 8)
496 #define __bitmask_size_in_longs(nr_bits) \
497 ((__bitmask_size_in_bytes_raw(nr_bits) + \
498 ((BITS_PER_LONG / 8) - 1)) / (BITS_PER_LONG / 8))
501 * __bitmask_size_in_bytes is the number of bytes needed to hold
502 * num_possible_cpus() padded out to the nearest long. This is what
503 * is saved in the buffer, just to be consistent.
505 #define __bitmask_size_in_bytes(nr_bits) \
506 (__bitmask_size_in_longs(nr_bits) * (BITS_PER_LONG / 8))
509 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, \
510 __bitmask_size_in_longs(nr_bits))
512 #undef DECLARE_EVENT_CLASS
513 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
514 static inline notrace int trace_event_get_offsets_##call( \
515 struct trace_event_data_offsets_##call *__data_offsets, proto) \
517 int __data_size = 0; \
518 int __maybe_unused __item_length; \
519 struct trace_event_raw_##call __maybe_unused *entry; \
523 return __data_size; \
527 #define DEFINE_EVENT(template, name, proto, args)
529 #undef DEFINE_EVENT_PRINT
530 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
531 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
533 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
536 * Stage 4 of the trace events.
538 * Override the macros in the event tracepoint header <trace/events/XXX.h>
539 * to include the following:
541 * For those macros defined with TRACE_EVENT:
543 * static struct trace_event_call event_<call>;
545 * static void trace_event_raw_event_<call>(void *__data, proto)
547 * struct trace_event_file *trace_file = __data;
548 * struct trace_event_call *event_call = trace_file->event_call;
549 * struct trace_event_data_offsets_<call> __maybe_unused __data_offsets;
550 * unsigned long eflags = trace_file->flags;
551 * enum event_trigger_type __tt = ETT_NONE;
552 * struct ring_buffer_event *event;
553 * struct trace_event_raw_<call> *entry; <-- defined in stage 1
554 * struct trace_buffer *buffer;
555 * unsigned long irq_flags;
559 * if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
560 * if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
561 * event_triggers_call(trace_file, NULL);
562 * if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
566 * local_save_flags(irq_flags);
567 * pc = preempt_count();
569 * __data_size = trace_event_get_offsets_<call>(&__data_offsets, args);
571 * event = trace_event_buffer_lock_reserve(&buffer, trace_file,
572 * event_<call>->event.type,
573 * sizeof(*entry) + __data_size,
577 * entry = ring_buffer_event_data(event);
579 * { <assign>; } <-- Here we assign the entries by the __field and
582 * if (eflags & EVENT_FILE_FL_TRIGGER_COND)
583 * __tt = event_triggers_call(trace_file, entry);
585 * if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT,
586 * &trace_file->flags))
587 * ring_buffer_discard_commit(buffer, event);
588 * else if (!filter_check_discard(trace_file, entry, buffer, event))
589 * trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
592 * event_triggers_post_call(trace_file, __tt);
595 * static struct trace_event ftrace_event_type_<call> = {
596 * .trace = trace_raw_output_<call>, <-- stage 2
599 * static char print_fmt_<call>[] = <TP_printk>;
601 * static struct trace_event_class __used event_class_<template> = {
602 * .system = "<system>",
603 * .fields_array = trace_event_fields_<call>,
604 * .fields = LIST_HEAD_INIT(event_class_##call.fields),
605 * .raw_init = trace_event_raw_init,
606 * .probe = trace_event_raw_event_##call,
607 * .reg = trace_event_reg,
610 * static struct trace_event_call event_<call> = {
611 * .class = event_class_<template>,
613 * .tp = &__tracepoint_<call>,
615 * .event = &ftrace_event_type_<call>,
616 * .print_fmt = print_fmt_<call>,
617 * .flags = TRACE_EVENT_FL_TRACEPOINT,
619 * // its only safe to use pointers when doing linker tricks to
620 * // create an array.
621 * static struct trace_event_call __used
622 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
626 #ifdef CONFIG_PERF_EVENTS
628 #define _TRACE_PERF_PROTO(call, proto) \
629 static notrace void \
630 perf_trace_##call(void *__data, proto);
632 #define _TRACE_PERF_INIT(call) \
633 .perf_probe = perf_trace_##call,
636 #define _TRACE_PERF_PROTO(call, proto)
637 #define _TRACE_PERF_INIT(call)
638 #endif /* CONFIG_PERF_EVENTS */
641 #define __entry entry
644 #define __field(type, item)
646 #undef __field_struct
647 #define __field_struct(type, item)
650 #define __array(type, item, len)
652 #undef __dynamic_array
653 #define __dynamic_array(type, item, len) \
654 __entry->__data_loc_##item = __data_offsets.item;
657 #define __string(item, src) __dynamic_array(char, item, -1)
660 #define __assign_str(dst, src) \
661 strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
664 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1)
667 #define __get_bitmask(field) (char *)__get_dynamic_array(field)
669 #undef __assign_bitmask
670 #define __assign_bitmask(dst, src, nr_bits) \
671 memcpy(__get_bitmask(dst), (src), __bitmask_size_in_bytes(nr_bits))
673 #undef TP_fast_assign
674 #define TP_fast_assign(args...) args
677 #define __perf_count(c) (c)
680 #define __perf_task(t) (t)
682 #undef DECLARE_EVENT_CLASS
683 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
685 static notrace void \
686 trace_event_raw_event_##call(void *__data, proto) \
688 struct trace_event_file *trace_file = __data; \
689 struct trace_event_data_offsets_##call __maybe_unused __data_offsets;\
690 struct trace_event_buffer fbuffer; \
691 struct trace_event_raw_##call *entry; \
694 if (trace_trigger_soft_disabled(trace_file)) \
697 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \
699 entry = trace_event_buffer_reserve(&fbuffer, trace_file, \
700 sizeof(*entry) + __data_size); \
709 trace_event_buffer_commit(&fbuffer); \
712 * The ftrace_test_probe is compiled out, it is only here as a build time check
713 * to make sure that if the tracepoint handling changes, the ftrace probe will
714 * fail to compile unless it too is updated.
718 #define DEFINE_EVENT(template, call, proto, args) \
719 static inline void ftrace_test_probe_##call(void) \
721 check_trace_callback_type_##call(trace_event_raw_event_##template); \
724 #undef DEFINE_EVENT_PRINT
725 #define DEFINE_EVENT_PRINT(template, name, proto, args, print)
727 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
733 #undef __print_symbolic
735 #undef __print_hex_str
736 #undef __get_dynamic_array
737 #undef __get_dynamic_array_len
741 #undef __print_hex_dump
744 #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
746 #undef DECLARE_EVENT_CLASS
747 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
748 _TRACE_PERF_PROTO(call, PARAMS(proto)); \
749 static char print_fmt_##call[] = print; \
750 static struct trace_event_class __used __refdata event_class_##call = { \
751 .system = TRACE_SYSTEM_STRING, \
752 .fields_array = trace_event_fields_##call, \
753 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
754 .raw_init = trace_event_raw_init, \
755 .probe = trace_event_raw_event_##call, \
756 .reg = trace_event_reg, \
757 _TRACE_PERF_INIT(call) \
761 #define DEFINE_EVENT(template, call, proto, args) \
763 static struct trace_event_call __used event_##call = { \
764 .class = &event_class_##template, \
766 .tp = &__tracepoint_##call, \
768 .event.funcs = &trace_event_type_funcs_##template, \
769 .print_fmt = print_fmt_##template, \
770 .flags = TRACE_EVENT_FL_TRACEPOINT, \
772 static struct trace_event_call __used \
773 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
775 #undef DEFINE_EVENT_PRINT
776 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
778 static char print_fmt_##call[] = print; \
780 static struct trace_event_call __used event_##call = { \
781 .class = &event_class_##template, \
783 .tp = &__tracepoint_##call, \
785 .event.funcs = &trace_event_type_funcs_##call, \
786 .print_fmt = print_fmt_##call, \
787 .flags = TRACE_EVENT_FL_TRACEPOINT, \
789 static struct trace_event_call __used \
790 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
792 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)