diff options
author | Dave Young | 2010-03-11 00:24:10 +0100 |
---|---|---|
committer | Linus Torvalds | 2010-03-13 00:53:10 +0100 |
commit | 2edf5e49800846a2b2b6461d99cdae18067c440f (patch) | |
tree | a03fc295676a23c30ae467ba96a1efaf5762dd90 /kernel/sysctl.c | |
parent | sysctl extern cleanup: rtmutex (diff) | |
download | kernel-qcow2-linux-2edf5e49800846a2b2b6461d99cdae18067c440f.tar.gz kernel-qcow2-linux-2edf5e49800846a2b2b6461d99cdae18067c440f.tar.xz kernel-qcow2-linux-2edf5e49800846a2b2b6461d99cdae18067c440f.zip |
sysctl extern cleanup: lockdep
Extern declarations in sysctl.c should be moved to their own header file,
and then include them in relavant .c files.
Move lockdep extern declarations to linux/lockdep.h
Signed-off-by: Dave Young <hidave.darkstar@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 622029ba5103..8686b0f5fc12 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -67,6 +67,9 @@ #ifdef CONFIG_RT_MUTEXES #include <linux/rtmutex.h> #endif +#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT) +#include <linux/lockdep.h> +#endif #ifdef CONFIG_CHR_DEV_SG #include <scsi/sg.h> #endif @@ -191,9 +194,6 @@ extern struct ctl_table epoll_table[]; int sysctl_legacy_va_layout; #endif -extern int prove_locking; -extern int lock_stat; - /* The default sysctl tables: */ static struct ctl_table root_table[] = { |