aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace_syscalls.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-05-26 17:53:52 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-10-31 09:20:12 -0400
commit56d82e000cdfb51aa92241d4682302f78c35cd92 (patch)
treedb011bf38930f2d0d0fa8a8f43e223fd03e25fad /kernel/trace/trace_syscalls.c
parentkernel: Map most files to use export.h instead of module.h (diff)
downloadlinux-dev-56d82e000cdfb51aa92241d4682302f78c35cd92.tar.xz
linux-dev-56d82e000cdfb51aa92241d4682302f78c35cd92.zip
kernel: Add <linux/module.h> to files using it implicitly
These files are doing things like module_put and try_module_get so they need to call out the module.h for explicit inclusion, rather than getting it via <linux/device.h> which we ideally want to remove the module.h inclusion from. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to '')
-rw-r--r--kernel/trace/trace_syscalls.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/trace/trace_syscalls.c b/kernel/trace/trace_syscalls.c
index ee7b5a0bb9f8..cb654542c1a1 100644
--- a/kernel/trace/trace_syscalls.c
+++ b/kernel/trace/trace_syscalls.c
@@ -2,6 +2,7 @@
#include <trace/events/syscalls.h>
#include <linux/slab.h>
#include <linux/kernel.h>
+#include <linux/module.h> /* for MODULE_NAME_LEN via KSYM_SYMBOL_LEN */
#include <linux/ftrace.h>
#include <linux/perf_event.h>
#include <asm/syscall.h>