diff options
-rw-r--r-- | include/linux/syscalls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index c2df3a593236..e79e2f3ccc51 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -134,7 +134,7 @@ struct perf_event_attr; | |||
134 | #define SYSCALL_TRACE_ENTER_EVENT(sname) \ | 134 | #define SYSCALL_TRACE_ENTER_EVENT(sname) \ |
135 | static const struct syscall_metadata __syscall_meta_##sname; \ | 135 | static const struct syscall_metadata __syscall_meta_##sname; \ |
136 | static struct ftrace_event_call event_enter_##sname; \ | 136 | static struct ftrace_event_call event_enter_##sname; \ |
137 | struct trace_event enter_syscall_print_##sname = { \ | 137 | static struct trace_event enter_syscall_print_##sname = { \ |
138 | .trace = print_syscall_enter, \ | 138 | .trace = print_syscall_enter, \ |
139 | }; \ | 139 | }; \ |
140 | static struct ftrace_event_call __used \ | 140 | static struct ftrace_event_call __used \ |
@@ -156,7 +156,7 @@ struct perf_event_attr; | |||
156 | #define SYSCALL_TRACE_EXIT_EVENT(sname) \ | 156 | #define SYSCALL_TRACE_EXIT_EVENT(sname) \ |
157 | static const struct syscall_metadata __syscall_meta_##sname; \ | 157 | static const struct syscall_metadata __syscall_meta_##sname; \ |
158 | static struct ftrace_event_call event_exit_##sname; \ | 158 | static struct ftrace_event_call event_exit_##sname; \ |
159 | struct trace_event exit_syscall_print_##sname = { \ | 159 | static struct trace_event exit_syscall_print_##sname = { \ |
160 | .trace = print_syscall_exit, \ | 160 | .trace = print_syscall_exit, \ |
161 | }; \ | 161 | }; \ |
162 | static struct ftrace_event_call __used \ | 162 | static struct ftrace_event_call __used \ |