|
@@ -13,6 +13,7 @@
|
|
|
#include <linux/hw_breakpoint.h>
|
|
|
#include <linux/trace_seq.h>
|
|
|
#include <linux/ftrace_event.h>
|
|
|
+#include <linux/compiler.h>
|
|
|
|
|
|
#ifdef CONFIG_FTRACE_SYSCALLS
|
|
|
#include <asm/unistd.h> /* For NR_SYSCALLS */
|
|
@@ -1279,7 +1280,7 @@ int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled);
|
|
|
#undef FTRACE_ENTRY
|
|
|
#define FTRACE_ENTRY(call, struct_name, id, tstruct, print, filter) \
|
|
|
extern struct ftrace_event_call \
|
|
|
- __attribute__((__aligned__(4))) event_##call;
|
|
|
+ __aligned(4) event_##call;
|
|
|
#undef FTRACE_ENTRY_DUP
|
|
|
#define FTRACE_ENTRY_DUP(call, struct_name, id, tstruct, print, filter) \
|
|
|
FTRACE_ENTRY(call, struct_name, id, PARAMS(tstruct), PARAMS(print), \
|