Commit 4f0e056f authored by Dave Young's avatar Dave Young Committed by Linus Torvalds

sysctl extern cleanup: rtmutex

Extern declarations in sysctl.c should be moved to their own header file,
and then include them in relavant .c files.

Move max_lock_depth extern declaration to linux/rtmutex.h
Signed-off-by: default avatarDave 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: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c55b7c3e
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
#include <linux/plist.h> #include <linux/plist.h>
#include <linux/spinlock_types.h> #include <linux/spinlock_types.h>
extern int max_lock_depth; /* for sysctl */
/** /**
* The rt_mutex structure * The rt_mutex structure
* *
......
...@@ -64,6 +64,9 @@ ...@@ -64,6 +64,9 @@
#ifdef CONFIG_BSD_PROCESS_ACCT #ifdef CONFIG_BSD_PROCESS_ACCT
#include <linux/acct.h> #include <linux/acct.h>
#endif #endif
#ifdef CONFIG_RT_MUTEXES
#include <linux/rtmutex.h>
#endif
#ifdef CONFIG_CHR_DEV_SG #ifdef CONFIG_CHR_DEV_SG
#include <scsi/sg.h> #include <scsi/sg.h>
#endif #endif
...@@ -150,10 +153,6 @@ extern int unaligned_dump_stack; ...@@ -150,10 +153,6 @@ extern int unaligned_dump_stack;
extern struct ratelimit_state printk_ratelimit_state; extern struct ratelimit_state printk_ratelimit_state;
#ifdef CONFIG_RT_MUTEXES
extern int max_lock_depth;
#endif
#ifdef CONFIG_PROC_SYSCTL #ifdef CONFIG_PROC_SYSCTL
static int proc_do_cad_pid(struct ctl_table *table, int write, static int proc_do_cad_pid(struct ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos); void __user *buffer, size_t *lenp, loff_t *ppos);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment