diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ftrace_event.h | 2 | ||||
-rw-r--r-- | include/linux/syscalls.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index 479c3c1876e6..393a8394df0e 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
@@ -133,6 +133,7 @@ struct ftrace_event_class { | |||
133 | int (*define_fields)(struct ftrace_event_call *); | 133 | int (*define_fields)(struct ftrace_event_call *); |
134 | struct list_head *(*get_fields)(struct ftrace_event_call *); | 134 | struct list_head *(*get_fields)(struct ftrace_event_call *); |
135 | struct list_head fields; | 135 | struct list_head fields; |
136 | int (*raw_init)(struct ftrace_event_call *); | ||
136 | }; | 137 | }; |
137 | 138 | ||
138 | struct ftrace_event_call { | 139 | struct ftrace_event_call { |
@@ -144,7 +145,6 @@ struct ftrace_event_call { | |||
144 | int enabled; | 145 | int enabled; |
145 | int id; | 146 | int id; |
146 | const char *print_fmt; | 147 | const char *print_fmt; |
147 | int (*raw_init)(struct ftrace_event_call *); | ||
148 | int filter_active; | 148 | int filter_active; |
149 | struct event_filter *filter; | 149 | struct event_filter *filter; |
150 | void *mod; | 150 | void *mod; |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index fd0f1f248cd8..211c704a71ed 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -135,7 +135,6 @@ extern struct ftrace_event_class event_class_syscall_exit; | |||
135 | .name = "sys_enter"#sname, \ | 135 | .name = "sys_enter"#sname, \ |
136 | .class = &event_class_syscall_enter, \ | 136 | .class = &event_class_syscall_enter, \ |
137 | .event = &enter_syscall_print_##sname, \ | 137 | .event = &enter_syscall_print_##sname, \ |
138 | .raw_init = init_syscall_trace, \ | ||
139 | .data = (void *)&__syscall_meta_##sname,\ | 138 | .data = (void *)&__syscall_meta_##sname,\ |
140 | } | 139 | } |
141 | 140 | ||
@@ -153,7 +152,6 @@ extern struct ftrace_event_class event_class_syscall_exit; | |||
153 | .name = "sys_exit"#sname, \ | 152 | .name = "sys_exit"#sname, \ |
154 | .class = &event_class_syscall_exit, \ | 153 | .class = &event_class_syscall_exit, \ |
155 | .event = &exit_syscall_print_##sname, \ | 154 | .event = &exit_syscall_print_##sname, \ |
156 | .raw_init = init_syscall_trace, \ | ||
157 | .data = (void *)&__syscall_meta_##sname,\ | 155 | .data = (void *)&__syscall_meta_##sname,\ |
158 | } | 156 | } |
159 | 157 | ||