diff options
-rw-r--r-- | include/linux/tracepoint.h | 2 | ||||
-rw-r--r-- | include/trace/define_trace.h | 2 | ||||
-rw-r--r-- | include/trace/events/sched.h | 6 | ||||
-rw-r--r-- | include/trace/ftrace.h | 46 |
4 files changed, 28 insertions, 28 deletions
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index 7063383cca13..f59604ed0ec6 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h | |||
@@ -280,7 +280,7 @@ static inline void tracepoint_synchronize_unregister(void) | |||
280 | * TRACE_EVENT_FN to perform any (un)registration work. | 280 | * TRACE_EVENT_FN to perform any (un)registration work. |
281 | */ | 281 | */ |
282 | 282 | ||
283 | #define TRACE_EVENT_TEMPLATE(name, proto, args, tstruct, assign, print) | 283 | #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) |
284 | #define DEFINE_EVENT(template, name, proto, args) \ | 284 | #define DEFINE_EVENT(template, name, proto, args) \ |
285 | DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)) | 285 | DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)) |
286 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | 286 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ |
diff --git a/include/trace/define_trace.h b/include/trace/define_trace.h index 5d7d855ae21e..5acfb1eb4df9 100644 --- a/include/trace/define_trace.h +++ b/include/trace/define_trace.h | |||
@@ -71,7 +71,7 @@ | |||
71 | 71 | ||
72 | #undef TRACE_EVENT | 72 | #undef TRACE_EVENT |
73 | #undef TRACE_EVENT_FN | 73 | #undef TRACE_EVENT_FN |
74 | #undef TRACE_EVENT_TEMPLATE | 74 | #undef DECLARE_EVENT_CLASS |
75 | #undef DEFINE_EVENT | 75 | #undef DEFINE_EVENT |
76 | #undef DEFINE_EVENT_PRINT | 76 | #undef DEFINE_EVENT_PRINT |
77 | #undef TRACE_HEADER_MULTI_READ | 77 | #undef TRACE_HEADER_MULTI_READ |
diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h index 238f74b58486..5ce795021851 100644 --- a/include/trace/events/sched.h +++ b/include/trace/events/sched.h | |||
@@ -83,7 +83,7 @@ TRACE_EVENT(sched_wait_task, | |||
83 | * (NOTE: the 'rq' argument is not used by generic trace events, | 83 | * (NOTE: the 'rq' argument is not used by generic trace events, |
84 | * but used by the latency tracer plugin. ) | 84 | * but used by the latency tracer plugin. ) |
85 | */ | 85 | */ |
86 | TRACE_EVENT_TEMPLATE(sched_wakeup_template, | 86 | DECLARE_EVENT_CLASS(sched_wakeup_template, |
87 | 87 | ||
88 | TP_PROTO(struct rq *rq, struct task_struct *p, int success), | 88 | TP_PROTO(struct rq *rq, struct task_struct *p, int success), |
89 | 89 | ||
@@ -197,7 +197,7 @@ TRACE_EVENT(sched_migrate_task, | |||
197 | __entry->orig_cpu, __entry->dest_cpu) | 197 | __entry->orig_cpu, __entry->dest_cpu) |
198 | ); | 198 | ); |
199 | 199 | ||
200 | TRACE_EVENT_TEMPLATE(sched_process_template, | 200 | DECLARE_EVENT_CLASS(sched_process_template, |
201 | 201 | ||
202 | TP_PROTO(struct task_struct *p), | 202 | TP_PROTO(struct task_struct *p), |
203 | 203 | ||
@@ -316,7 +316,7 @@ TRACE_EVENT(sched_signal_send, | |||
316 | * XXX the below sched_stat tracepoints only apply to SCHED_OTHER/BATCH/IDLE | 316 | * XXX the below sched_stat tracepoints only apply to SCHED_OTHER/BATCH/IDLE |
317 | * adding sched_stat support to SCHED_FIFO/RR would be welcome. | 317 | * adding sched_stat support to SCHED_FIFO/RR would be welcome. |
318 | */ | 318 | */ |
319 | TRACE_EVENT_TEMPLATE(sched_stat_template, | 319 | DECLARE_EVENT_CLASS(sched_stat_template, |
320 | 320 | ||
321 | TP_PROTO(struct task_struct *tsk, u64 delay), | 321 | TP_PROTO(struct task_struct *tsk, u64 delay), |
322 | 322 | ||
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h index b0461772bc8d..2c9c073e45ad 100644 --- a/include/trace/ftrace.h +++ b/include/trace/ftrace.h | |||
@@ -19,17 +19,17 @@ | |||
19 | #include <linux/ftrace_event.h> | 19 | #include <linux/ftrace_event.h> |
20 | 20 | ||
21 | /* | 21 | /* |
22 | * TRACE_EVENT_TEMPLATE can be used to add a generic function | 22 | * DECLARE_EVENT_CLASS can be used to add a generic function |
23 | * handlers for events. That is, if all events have the same | 23 | * handlers for events. That is, if all events have the same |
24 | * parameters and just have distinct trace points. | 24 | * parameters and just have distinct trace points. |
25 | * Each tracepoint can be defined with DEFINE_EVENT and that | 25 | * Each tracepoint can be defined with DEFINE_EVENT and that |
26 | * will map the TRACE_EVENT_TEMPLATE to the tracepoint. | 26 | * will map the DECLARE_EVENT_CLASS to the tracepoint. |
27 | * | 27 | * |
28 | * TRACE_EVENT is a one to one mapping between tracepoint and template. | 28 | * TRACE_EVENT is a one to one mapping between tracepoint and template. |
29 | */ | 29 | */ |
30 | #undef TRACE_EVENT | 30 | #undef TRACE_EVENT |
31 | #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ | 31 | #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ |
32 | TRACE_EVENT_TEMPLATE(name, \ | 32 | DECLARE_EVENT_CLASS(name, \ |
33 | PARAMS(proto), \ | 33 | PARAMS(proto), \ |
34 | PARAMS(args), \ | 34 | PARAMS(args), \ |
35 | PARAMS(tstruct), \ | 35 | PARAMS(tstruct), \ |
@@ -56,8 +56,8 @@ | |||
56 | #undef TP_STRUCT__entry | 56 | #undef TP_STRUCT__entry |
57 | #define TP_STRUCT__entry(args...) args | 57 | #define TP_STRUCT__entry(args...) args |
58 | 58 | ||
59 | #undef TRACE_EVENT_TEMPLATE | 59 | #undef DECLARE_EVENT_CLASS |
60 | #define TRACE_EVENT_TEMPLATE(name, proto, args, tstruct, assign, print) \ | 60 | #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ |
61 | struct ftrace_raw_##name { \ | 61 | struct ftrace_raw_##name { \ |
62 | struct trace_entry ent; \ | 62 | struct trace_entry ent; \ |
63 | tstruct \ | 63 | tstruct \ |
@@ -115,8 +115,8 @@ | |||
115 | #undef __string | 115 | #undef __string |
116 | #define __string(item, src) __dynamic_array(char, item, -1) | 116 | #define __string(item, src) __dynamic_array(char, item, -1) |
117 | 117 | ||
118 | #undef TRACE_EVENT_TEMPLATE | 118 | #undef DECLARE_EVENT_CLASS |
119 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, assign, print) \ | 119 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
120 | struct ftrace_data_offsets_##call { \ | 120 | struct ftrace_data_offsets_##call { \ |
121 | tstruct; \ | 121 | tstruct; \ |
122 | }; | 122 | }; |
@@ -203,8 +203,8 @@ | |||
203 | #undef TP_perf_assign | 203 | #undef TP_perf_assign |
204 | #define TP_perf_assign(args...) | 204 | #define TP_perf_assign(args...) |
205 | 205 | ||
206 | #undef TRACE_EVENT_TEMPLATE | 206 | #undef DECLARE_EVENT_CLASS |
207 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, func, print) \ | 207 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \ |
208 | static int \ | 208 | static int \ |
209 | ftrace_format_setup_##call(struct ftrace_event_call *unused, \ | 209 | ftrace_format_setup_##call(struct ftrace_event_call *unused, \ |
210 | struct trace_seq *s) \ | 210 | struct trace_seq *s) \ |
@@ -321,8 +321,8 @@ ftrace_format_##name(struct ftrace_event_call *unused, \ | |||
321 | ftrace_print_symbols_seq(p, value, symbols); \ | 321 | ftrace_print_symbols_seq(p, value, symbols); \ |
322 | }) | 322 | }) |
323 | 323 | ||
324 | #undef TRACE_EVENT_TEMPLATE | 324 | #undef DECLARE_EVENT_CLASS |
325 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, assign, print) \ | 325 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
326 | static enum print_line_t \ | 326 | static enum print_line_t \ |
327 | ftrace_raw_output_id_##call(int event_id, const char *name, \ | 327 | ftrace_raw_output_id_##call(int event_id, const char *name, \ |
328 | struct trace_iterator *iter, int flags) \ | 328 | struct trace_iterator *iter, int flags) \ |
@@ -428,8 +428,8 @@ ftrace_raw_output_##call(struct trace_iterator *iter, int flags) \ | |||
428 | #undef __string | 428 | #undef __string |
429 | #define __string(item, src) __dynamic_array(char, item, -1) | 429 | #define __string(item, src) __dynamic_array(char, item, -1) |
430 | 430 | ||
431 | #undef TRACE_EVENT_TEMPLATE | 431 | #undef DECLARE_EVENT_CLASS |
432 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, func, print) \ | 432 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \ |
433 | static int \ | 433 | static int \ |
434 | ftrace_define_fields_##call(struct ftrace_event_call *event_call) \ | 434 | ftrace_define_fields_##call(struct ftrace_event_call *event_call) \ |
435 | { \ | 435 | { \ |
@@ -480,8 +480,8 @@ ftrace_define_fields_##call(struct ftrace_event_call *event_call) \ | |||
480 | #undef __string | 480 | #undef __string |
481 | #define __string(item, src) __dynamic_array(char, item, strlen(src) + 1) | 481 | #define __string(item, src) __dynamic_array(char, item, strlen(src) + 1) |
482 | 482 | ||
483 | #undef TRACE_EVENT_TEMPLATE | 483 | #undef DECLARE_EVENT_CLASS |
484 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, assign, print) \ | 484 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
485 | static inline int ftrace_get_offsets_##call( \ | 485 | static inline int ftrace_get_offsets_##call( \ |
486 | struct ftrace_data_offsets_##call *__data_offsets, proto) \ | 486 | struct ftrace_data_offsets_##call *__data_offsets, proto) \ |
487 | { \ | 487 | { \ |
@@ -521,8 +521,8 @@ static inline int ftrace_get_offsets_##call( \ | |||
521 | * | 521 | * |
522 | */ | 522 | */ |
523 | 523 | ||
524 | #undef TRACE_EVENT_TEMPLATE | 524 | #undef DECLARE_EVENT_CLASS |
525 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, assign, print) | 525 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) |
526 | 526 | ||
527 | #undef DEFINE_EVENT | 527 | #undef DEFINE_EVENT |
528 | #define DEFINE_EVENT(template, name, proto, args) \ | 528 | #define DEFINE_EVENT(template, name, proto, args) \ |
@@ -681,8 +681,8 @@ static void ftrace_profile_disable_##name(struct ftrace_event_call *unused)\ | |||
681 | #define __assign_str(dst, src) \ | 681 | #define __assign_str(dst, src) \ |
682 | strcpy(__get_str(dst), src); | 682 | strcpy(__get_str(dst), src); |
683 | 683 | ||
684 | #undef TRACE_EVENT_TEMPLATE | 684 | #undef DECLARE_EVENT_CLASS |
685 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, assign, print) \ | 685 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
686 | \ | 686 | \ |
687 | static void ftrace_raw_event_id_##call(struct ftrace_event_call *event_call, \ | 687 | static void ftrace_raw_event_id_##call(struct ftrace_event_call *event_call, \ |
688 | proto) \ | 688 | proto) \ |
@@ -764,8 +764,8 @@ static int ftrace_raw_init_event_##call(struct ftrace_event_call *unused)\ | |||
764 | 764 | ||
765 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) | 765 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
766 | 766 | ||
767 | #undef TRACE_EVENT_TEMPLATE | 767 | #undef DECLARE_EVENT_CLASS |
768 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, assign, print) | 768 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) |
769 | 769 | ||
770 | #undef DEFINE_EVENT | 770 | #undef DEFINE_EVENT |
771 | #define DEFINE_EVENT(template, call, proto, args) \ | 771 | #define DEFINE_EVENT(template, call, proto, args) \ |
@@ -885,8 +885,8 @@ __attribute__((section("_ftrace_events"))) event_##call = { \ | |||
885 | #undef __perf_count | 885 | #undef __perf_count |
886 | #define __perf_count(c) __count = (c) | 886 | #define __perf_count(c) __count = (c) |
887 | 887 | ||
888 | #undef TRACE_EVENT_TEMPLATE | 888 | #undef DECLARE_EVENT_CLASS |
889 | #define TRACE_EVENT_TEMPLATE(call, proto, args, tstruct, assign, print) \ | 889 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
890 | static void \ | 890 | static void \ |
891 | ftrace_profile_templ_##call(struct ftrace_event_call *event_call, \ | 891 | ftrace_profile_templ_##call(struct ftrace_event_call *event_call, \ |
892 | proto) \ | 892 | proto) \ |