diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ftrace_event.h | 8 | ||||
-rw-r--r-- | include/trace/ftrace.h | 8 |
2 files changed, 4 insertions, 12 deletions
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index 35b3a4a5ba86..427cbae47f84 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
@@ -142,6 +142,7 @@ extern int filter_current_check_discard(struct ftrace_event_call *call, | |||
142 | 142 | ||
143 | extern int trace_define_field(struct ftrace_event_call *call, char *type, | 143 | extern int trace_define_field(struct ftrace_event_call *call, char *type, |
144 | char *name, int offset, int size, int is_signed); | 144 | char *name, int offset, int size, int is_signed); |
145 | extern int trace_define_common_fields(struct ftrace_event_call *call); | ||
145 | 146 | ||
146 | #define is_signed_type(type) (((type)(-1)) < 0) | 147 | #define is_signed_type(type) (((type)(-1)) < 0) |
147 | 148 | ||
@@ -166,11 +167,4 @@ do { \ | |||
166 | __trace_printk(ip, fmt, ##args); \ | 167 | __trace_printk(ip, fmt, ##args); \ |
167 | } while (0) | 168 | } while (0) |
168 | 169 | ||
169 | #define __common_field(type, item, is_signed) \ | ||
170 | ret = trace_define_field(event_call, #type, "common_" #item, \ | ||
171 | offsetof(typeof(field.ent), item), \ | ||
172 | sizeof(field.ent.item), is_signed); \ | ||
173 | if (ret) \ | ||
174 | return ret; | ||
175 | |||
176 | #endif /* _LINUX_FTRACE_EVENT_H */ | 170 | #endif /* _LINUX_FTRACE_EVENT_H */ |
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h index 4e81c9b37515..127400255e4c 100644 --- a/include/trace/ftrace.h +++ b/include/trace/ftrace.h | |||
@@ -299,11 +299,9 @@ ftrace_define_fields_##call(struct ftrace_event_call *event_call) \ | |||
299 | struct ftrace_raw_##call field; \ | 299 | struct ftrace_raw_##call field; \ |
300 | int ret; \ | 300 | int ret; \ |
301 | \ | 301 | \ |
302 | __common_field(int, type, 1); \ | 302 | ret = trace_define_common_fields(event_call); \ |
303 | __common_field(unsigned char, flags, 0); \ | 303 | if (ret) \ |
304 | __common_field(unsigned char, preempt_count, 0); \ | 304 | return ret; \ |
305 | __common_field(int, pid, 1); \ | ||
306 | __common_field(int, tgid, 1); \ | ||
307 | \ | 305 | \ |
308 | tstruct; \ | 306 | tstruct; \ |
309 | \ | 307 | \ |