]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - include/trace/ftrace.h
Merge tag 'trace-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux...
[mirror_ubuntu-zesty-kernel.git] / include / trace / ftrace.h
1 /*
2 * Stage 1 of the trace events.
3 *
4 * Override the macros in <trace/trace_events.h> to include the following:
5 *
6 * struct ftrace_raw_<call> {
7 * struct trace_entry ent;
8 * <type> <item>;
9 * <type2> <item2>[<len>];
10 * [...]
11 * };
12 *
13 * The <type> <item> is created by the __field(type, item) macro or
14 * the __array(type2, item2, len) macro.
15 * We simply do "type item;", and that will create the fields
16 * in the structure.
17 */
18
19 #include <linux/ftrace_event.h>
20
21 /*
22 * DECLARE_EVENT_CLASS can be used to add a generic function
23 * handlers for events. That is, if all events have the same
24 * parameters and just have distinct trace points.
25 * Each tracepoint can be defined with DEFINE_EVENT and that
26 * will map the DECLARE_EVENT_CLASS to the tracepoint.
27 *
28 * TRACE_EVENT is a one to one mapping between tracepoint and template.
29 */
30 #undef TRACE_EVENT
31 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
32 DECLARE_EVENT_CLASS(name, \
33 PARAMS(proto), \
34 PARAMS(args), \
35 PARAMS(tstruct), \
36 PARAMS(assign), \
37 PARAMS(print)); \
38 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args));
39
40
41 #undef __field
42 #define __field(type, item) type item;
43
44 #undef __field_ext
45 #define __field_ext(type, item, filter_type) type item;
46
47 #undef __array
48 #define __array(type, item, len) type item[len];
49
50 #undef __dynamic_array
51 #define __dynamic_array(type, item, len) u32 __data_loc_##item;
52
53 #undef __string
54 #define __string(item, src) __dynamic_array(char, item, -1)
55
56 #undef TP_STRUCT__entry
57 #define TP_STRUCT__entry(args...) args
58
59 #undef DECLARE_EVENT_CLASS
60 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
61 struct ftrace_raw_##name { \
62 struct trace_entry ent; \
63 tstruct \
64 char __data[0]; \
65 }; \
66 \
67 static struct ftrace_event_class event_class_##name;
68
69 #undef DEFINE_EVENT
70 #define DEFINE_EVENT(template, name, proto, args) \
71 static struct ftrace_event_call __used \
72 __attribute__((__aligned__(4))) event_##name
73
74 #undef DEFINE_EVENT_FN
75 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \
76 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
77
78 #undef DEFINE_EVENT_PRINT
79 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
80 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
81
82 /* Callbacks are meaningless to ftrace. */
83 #undef TRACE_EVENT_FN
84 #define TRACE_EVENT_FN(name, proto, args, tstruct, \
85 assign, print, reg, unreg) \
86 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \
87 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
88
89 #undef TRACE_EVENT_FLAGS
90 #define TRACE_EVENT_FLAGS(name, value) \
91 __TRACE_EVENT_FLAGS(name, value)
92
93 #undef TRACE_EVENT_PERF_PERM
94 #define TRACE_EVENT_PERF_PERM(name, expr...) \
95 __TRACE_EVENT_PERF_PERM(name, expr)
96
97 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
98
99
100 /*
101 * Stage 2 of the trace events.
102 *
103 * Include the following:
104 *
105 * struct ftrace_data_offsets_<call> {
106 * u32 <item1>;
107 * u32 <item2>;
108 * [...]
109 * };
110 *
111 * The __dynamic_array() macro will create each u32 <item>, this is
112 * to keep the offset of each array from the beginning of the event.
113 * The size of an array is also encoded, in the higher 16 bits of <item>.
114 */
115
116 #undef __field
117 #define __field(type, item)
118
119 #undef __field_ext
120 #define __field_ext(type, item, filter_type)
121
122 #undef __array
123 #define __array(type, item, len)
124
125 #undef __dynamic_array
126 #define __dynamic_array(type, item, len) u32 item;
127
128 #undef __string
129 #define __string(item, src) __dynamic_array(char, item, -1)
130
131 #undef DECLARE_EVENT_CLASS
132 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
133 struct ftrace_data_offsets_##call { \
134 tstruct; \
135 };
136
137 #undef DEFINE_EVENT
138 #define DEFINE_EVENT(template, name, proto, args)
139
140 #undef DEFINE_EVENT_PRINT
141 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
142 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
143
144 #undef TRACE_EVENT_FLAGS
145 #define TRACE_EVENT_FLAGS(event, flag)
146
147 #undef TRACE_EVENT_PERF_PERM
148 #define TRACE_EVENT_PERF_PERM(event, expr...)
149
150 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
151
152 /*
153 * Stage 3 of the trace events.
154 *
155 * Override the macros in <trace/trace_events.h> to include the following:
156 *
157 * enum print_line_t
158 * ftrace_raw_output_<call>(struct trace_iterator *iter, int flags)
159 * {
160 * struct trace_seq *s = &iter->seq;
161 * struct ftrace_raw_<call> *field; <-- defined in stage 1
162 * struct trace_entry *entry;
163 * struct trace_seq *p = &iter->tmp_seq;
164 * int ret;
165 *
166 * entry = iter->ent;
167 *
168 * if (entry->type != event_<call>->event.type) {
169 * WARN_ON_ONCE(1);
170 * return TRACE_TYPE_UNHANDLED;
171 * }
172 *
173 * field = (typeof(field))entry;
174 *
175 * trace_seq_init(p);
176 * ret = trace_seq_printf(s, "%s: ", <call>);
177 * if (ret)
178 * ret = trace_seq_printf(s, <TP_printk> "\n");
179 * if (!ret)
180 * return TRACE_TYPE_PARTIAL_LINE;
181 *
182 * return TRACE_TYPE_HANDLED;
183 * }
184 *
185 * This is the method used to print the raw event to the trace
186 * output format. Note, this is not needed if the data is read
187 * in binary.
188 */
189
190 #undef __entry
191 #define __entry field
192
193 #undef TP_printk
194 #define TP_printk(fmt, args...) fmt "\n", args
195
196 #undef __get_dynamic_array
197 #define __get_dynamic_array(field) \
198 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
199
200 #undef __get_str
201 #define __get_str(field) (char *)__get_dynamic_array(field)
202
203 #undef __print_flags
204 #define __print_flags(flag, delim, flag_array...) \
205 ({ \
206 static const struct trace_print_flags __flags[] = \
207 { flag_array, { -1, NULL }}; \
208 ftrace_print_flags_seq(p, delim, flag, __flags); \
209 })
210
211 #undef __print_symbolic
212 #define __print_symbolic(value, symbol_array...) \
213 ({ \
214 static const struct trace_print_flags symbols[] = \
215 { symbol_array, { -1, NULL }}; \
216 ftrace_print_symbols_seq(p, value, symbols); \
217 })
218
219 #undef __print_symbolic_u64
220 #if BITS_PER_LONG == 32
221 #define __print_symbolic_u64(value, symbol_array...) \
222 ({ \
223 static const struct trace_print_flags_u64 symbols[] = \
224 { symbol_array, { -1, NULL } }; \
225 ftrace_print_symbols_seq_u64(p, value, symbols); \
226 })
227 #else
228 #define __print_symbolic_u64(value, symbol_array...) \
229 __print_symbolic(value, symbol_array)
230 #endif
231
232 #undef __print_hex
233 #define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)
234
235 #undef DECLARE_EVENT_CLASS
236 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
237 static notrace enum print_line_t \
238 ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
239 struct trace_event *trace_event) \
240 { \
241 struct trace_seq *s = &iter->seq; \
242 struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
243 struct ftrace_raw_##call *field; \
244 int ret; \
245 \
246 field = (typeof(field))iter->ent; \
247 \
248 ret = ftrace_raw_output_prep(iter, trace_event); \
249 if (ret) \
250 return ret; \
251 \
252 ret = trace_seq_printf(s, print); \
253 if (!ret) \
254 return TRACE_TYPE_PARTIAL_LINE; \
255 \
256 return TRACE_TYPE_HANDLED; \
257 } \
258 static struct trace_event_functions ftrace_event_type_funcs_##call = { \
259 .trace = ftrace_raw_output_##call, \
260 };
261
262 #undef DEFINE_EVENT_PRINT
263 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
264 static notrace enum print_line_t \
265 ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
266 struct trace_event *event) \
267 { \
268 struct ftrace_raw_##template *field; \
269 struct trace_entry *entry; \
270 struct trace_seq *p = &iter->tmp_seq; \
271 \
272 entry = iter->ent; \
273 \
274 if (entry->type != event_##call.event.type) { \
275 WARN_ON_ONCE(1); \
276 return TRACE_TYPE_UNHANDLED; \
277 } \
278 \
279 field = (typeof(field))entry; \
280 \
281 trace_seq_init(p); \
282 return ftrace_output_call(iter, #call, print); \
283 } \
284 static struct trace_event_functions ftrace_event_type_funcs_##call = { \
285 .trace = ftrace_raw_output_##call, \
286 };
287
288 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
289
290 #undef __field_ext
291 #define __field_ext(type, item, filter_type) \
292 ret = trace_define_field(event_call, #type, #item, \
293 offsetof(typeof(field), item), \
294 sizeof(field.item), \
295 is_signed_type(type), filter_type); \
296 if (ret) \
297 return ret;
298
299 #undef __field
300 #define __field(type, item) __field_ext(type, item, FILTER_OTHER)
301
302 #undef __array
303 #define __array(type, item, len) \
304 do { \
305 char *type_str = #type"["__stringify(len)"]"; \
306 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
307 ret = trace_define_field(event_call, type_str, #item, \
308 offsetof(typeof(field), item), \
309 sizeof(field.item), \
310 is_signed_type(type), FILTER_OTHER); \
311 if (ret) \
312 return ret; \
313 } while (0);
314
315 #undef __dynamic_array
316 #define __dynamic_array(type, item, len) \
317 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
318 offsetof(typeof(field), __data_loc_##item), \
319 sizeof(field.__data_loc_##item), \
320 is_signed_type(type), FILTER_OTHER);
321
322 #undef __string
323 #define __string(item, src) __dynamic_array(char, item, -1)
324
325 #undef DECLARE_EVENT_CLASS
326 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
327 static int notrace __init \
328 ftrace_define_fields_##call(struct ftrace_event_call *event_call) \
329 { \
330 struct ftrace_raw_##call field; \
331 int ret; \
332 \
333 tstruct; \
334 \
335 return ret; \
336 }
337
338 #undef DEFINE_EVENT
339 #define DEFINE_EVENT(template, name, proto, args)
340
341 #undef DEFINE_EVENT_PRINT
342 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
343 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
344
345 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
346
347 /*
348 * remember the offset of each array from the beginning of the event.
349 */
350
351 #undef __entry
352 #define __entry entry
353
354 #undef __field
355 #define __field(type, item)
356
357 #undef __field_ext
358 #define __field_ext(type, item, filter_type)
359
360 #undef __array
361 #define __array(type, item, len)
362
363 #undef __dynamic_array
364 #define __dynamic_array(type, item, len) \
365 __item_length = (len) * sizeof(type); \
366 __data_offsets->item = __data_size + \
367 offsetof(typeof(*entry), __data); \
368 __data_offsets->item |= __item_length << 16; \
369 __data_size += __item_length;
370
371 #undef __string
372 #define __string(item, src) __dynamic_array(char, item, \
373 strlen((src) ? (const char *)(src) : "(null)") + 1)
374
375 #undef DECLARE_EVENT_CLASS
376 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
377 static inline notrace int ftrace_get_offsets_##call( \
378 struct ftrace_data_offsets_##call *__data_offsets, proto) \
379 { \
380 int __data_size = 0; \
381 int __maybe_unused __item_length; \
382 struct ftrace_raw_##call __maybe_unused *entry; \
383 \
384 tstruct; \
385 \
386 return __data_size; \
387 }
388
389 #undef DEFINE_EVENT
390 #define DEFINE_EVENT(template, name, proto, args)
391
392 #undef DEFINE_EVENT_PRINT
393 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
394 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
395
396 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
397
398 /*
399 * Stage 4 of the trace events.
400 *
401 * Override the macros in <trace/trace_events.h> to include the following:
402 *
403 * For those macros defined with TRACE_EVENT:
404 *
405 * static struct ftrace_event_call event_<call>;
406 *
407 * static void ftrace_raw_event_<call>(void *__data, proto)
408 * {
409 * struct ftrace_event_file *ftrace_file = __data;
410 * struct ftrace_event_call *event_call = ftrace_file->event_call;
411 * struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
412 * unsigned long eflags = ftrace_file->flags;
413 * enum event_trigger_type __tt = ETT_NONE;
414 * struct ring_buffer_event *event;
415 * struct ftrace_raw_<call> *entry; <-- defined in stage 1
416 * struct ring_buffer *buffer;
417 * unsigned long irq_flags;
418 * int __data_size;
419 * int pc;
420 *
421 * if (!(eflags & FTRACE_EVENT_FL_TRIGGER_COND)) {
422 * if (eflags & FTRACE_EVENT_FL_TRIGGER_MODE)
423 * event_triggers_call(ftrace_file, NULL);
424 * if (eflags & FTRACE_EVENT_FL_SOFT_DISABLED)
425 * return;
426 * }
427 *
428 * local_save_flags(irq_flags);
429 * pc = preempt_count();
430 *
431 * __data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
432 *
433 * event = trace_event_buffer_lock_reserve(&buffer, ftrace_file,
434 * event_<call>->event.type,
435 * sizeof(*entry) + __data_size,
436 * irq_flags, pc);
437 * if (!event)
438 * return;
439 * entry = ring_buffer_event_data(event);
440 *
441 * { <assign>; } <-- Here we assign the entries by the __field and
442 * __array macros.
443 *
444 * if (eflags & FTRACE_EVENT_FL_TRIGGER_COND)
445 * __tt = event_triggers_call(ftrace_file, entry);
446 *
447 * if (test_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT,
448 * &ftrace_file->flags))
449 * ring_buffer_discard_commit(buffer, event);
450 * else if (!filter_check_discard(ftrace_file, entry, buffer, event))
451 * trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
452 *
453 * if (__tt)
454 * event_triggers_post_call(ftrace_file, __tt);
455 * }
456 *
457 * static struct trace_event ftrace_event_type_<call> = {
458 * .trace = ftrace_raw_output_<call>, <-- stage 2
459 * };
460 *
461 * static const char print_fmt_<call>[] = <TP_printk>;
462 *
463 * static struct ftrace_event_class __used event_class_<template> = {
464 * .system = "<system>",
465 * .define_fields = ftrace_define_fields_<call>,
466 * .fields = LIST_HEAD_INIT(event_class_##call.fields),
467 * .raw_init = trace_event_raw_init,
468 * .probe = ftrace_raw_event_##call,
469 * .reg = ftrace_event_reg,
470 * };
471 *
472 * static struct ftrace_event_call event_<call> = {
473 * .name = "<call>",
474 * .class = event_class_<template>,
475 * .event = &ftrace_event_type_<call>,
476 * .print_fmt = print_fmt_<call>,
477 * };
478 * // its only safe to use pointers when doing linker tricks to
479 * // create an array.
480 * static struct ftrace_event_call __used
481 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
482 *
483 */
484
485 #ifdef CONFIG_PERF_EVENTS
486
487 #define _TRACE_PERF_PROTO(call, proto) \
488 static notrace void \
489 perf_trace_##call(void *__data, proto);
490
491 #define _TRACE_PERF_INIT(call) \
492 .perf_probe = perf_trace_##call,
493
494 #else
495 #define _TRACE_PERF_PROTO(call, proto)
496 #define _TRACE_PERF_INIT(call)
497 #endif /* CONFIG_PERF_EVENTS */
498
499 #undef __entry
500 #define __entry entry
501
502 #undef __field
503 #define __field(type, item)
504
505 #undef __array
506 #define __array(type, item, len)
507
508 #undef __dynamic_array
509 #define __dynamic_array(type, item, len) \
510 __entry->__data_loc_##item = __data_offsets.item;
511
512 #undef __string
513 #define __string(item, src) __dynamic_array(char, item, -1) \
514
515 #undef __assign_str
516 #define __assign_str(dst, src) \
517 strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
518
519 #undef TP_fast_assign
520 #define TP_fast_assign(args...) args
521
522 #undef __perf_addr
523 #define __perf_addr(a) (a)
524
525 #undef __perf_count
526 #define __perf_count(c) (c)
527
528 #undef __perf_task
529 #define __perf_task(t) (t)
530
531 #undef DECLARE_EVENT_CLASS
532 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
533 \
534 static notrace void \
535 ftrace_raw_event_##call(void *__data, proto) \
536 { \
537 struct ftrace_event_file *ftrace_file = __data; \
538 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
539 struct ftrace_event_buffer fbuffer; \
540 struct ftrace_raw_##call *entry; \
541 int __data_size; \
542 \
543 if (ftrace_trigger_soft_disabled(ftrace_file)) \
544 return; \
545 \
546 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
547 \
548 entry = ftrace_event_buffer_reserve(&fbuffer, ftrace_file, \
549 sizeof(*entry) + __data_size); \
550 \
551 if (!entry) \
552 return; \
553 \
554 tstruct \
555 \
556 { assign; } \
557 \
558 ftrace_event_buffer_commit(&fbuffer); \
559 }
560 /*
561 * The ftrace_test_probe is compiled out, it is only here as a build time check
562 * to make sure that if the tracepoint handling changes, the ftrace probe will
563 * fail to compile unless it too is updated.
564 */
565
566 #undef DEFINE_EVENT
567 #define DEFINE_EVENT(template, call, proto, args) \
568 static inline void ftrace_test_probe_##call(void) \
569 { \
570 check_trace_callback_type_##call(ftrace_raw_event_##template); \
571 }
572
573 #undef DEFINE_EVENT_PRINT
574 #define DEFINE_EVENT_PRINT(template, name, proto, args, print)
575
576 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
577
578 #undef __entry
579 #define __entry REC
580
581 #undef __print_flags
582 #undef __print_symbolic
583 #undef __print_hex
584 #undef __get_dynamic_array
585 #undef __get_str
586
587 #undef TP_printk
588 #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
589
590 #undef DECLARE_EVENT_CLASS
591 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
592 _TRACE_PERF_PROTO(call, PARAMS(proto)); \
593 static const char print_fmt_##call[] = print; \
594 static struct ftrace_event_class __used __refdata event_class_##call = { \
595 .system = __stringify(TRACE_SYSTEM), \
596 .define_fields = ftrace_define_fields_##call, \
597 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
598 .raw_init = trace_event_raw_init, \
599 .probe = ftrace_raw_event_##call, \
600 .reg = ftrace_event_reg, \
601 _TRACE_PERF_INIT(call) \
602 };
603
604 #undef DEFINE_EVENT
605 #define DEFINE_EVENT(template, call, proto, args) \
606 \
607 static struct ftrace_event_call __used event_##call = { \
608 .name = #call, \
609 .class = &event_class_##template, \
610 .event.funcs = &ftrace_event_type_funcs_##template, \
611 .print_fmt = print_fmt_##template, \
612 }; \
613 static struct ftrace_event_call __used \
614 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
615
616 #undef DEFINE_EVENT_PRINT
617 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
618 \
619 static const char print_fmt_##call[] = print; \
620 \
621 static struct ftrace_event_call __used event_##call = { \
622 .name = #call, \
623 .class = &event_class_##template, \
624 .event.funcs = &ftrace_event_type_funcs_##call, \
625 .print_fmt = print_fmt_##call, \
626 }; \
627 static struct ftrace_event_call __used \
628 __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
629
630 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
631
632
633 #ifdef CONFIG_PERF_EVENTS
634
635 #undef __entry
636 #define __entry entry
637
638 #undef __get_dynamic_array
639 #define __get_dynamic_array(field) \
640 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
641
642 #undef __get_str
643 #define __get_str(field) (char *)__get_dynamic_array(field)
644
645 #undef __perf_addr
646 #define __perf_addr(a) (__addr = (a))
647
648 #undef __perf_count
649 #define __perf_count(c) (__count = (c))
650
651 #undef __perf_task
652 #define __perf_task(t) (__task = (t))
653
654 #undef DECLARE_EVENT_CLASS
655 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
656 static notrace void \
657 perf_trace_##call(void *__data, proto) \
658 { \
659 struct ftrace_event_call *event_call = __data; \
660 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
661 struct ftrace_raw_##call *entry; \
662 struct pt_regs __regs; \
663 u64 __addr = 0, __count = 1; \
664 struct task_struct *__task = NULL; \
665 struct hlist_head *head; \
666 int __entry_size; \
667 int __data_size; \
668 int rctx; \
669 \
670 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
671 \
672 head = this_cpu_ptr(event_call->perf_events); \
673 if (__builtin_constant_p(!__task) && !__task && \
674 hlist_empty(head)) \
675 return; \
676 \
677 __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
678 sizeof(u64)); \
679 __entry_size -= sizeof(u32); \
680 \
681 perf_fetch_caller_regs(&__regs); \
682 entry = perf_trace_buf_prepare(__entry_size, \
683 event_call->event.type, &__regs, &rctx); \
684 if (!entry) \
685 return; \
686 \
687 tstruct \
688 \
689 { assign; } \
690 \
691 perf_trace_buf_submit(entry, __entry_size, rctx, __addr, \
692 __count, &__regs, head, __task); \
693 }
694
695 /*
696 * This part is compiled out, it is only here as a build time check
697 * to make sure that if the tracepoint handling changes, the
698 * perf probe will fail to compile unless it too is updated.
699 */
700 #undef DEFINE_EVENT
701 #define DEFINE_EVENT(template, call, proto, args) \
702 static inline void perf_test_probe_##call(void) \
703 { \
704 check_trace_callback_type_##call(perf_trace_##template); \
705 }
706
707
708 #undef DEFINE_EVENT_PRINT
709 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
710 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
711
712 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
713 #endif /* CONFIG_PERF_EVENTS */
714