diff options
-rw-r--r-- | include/linux/rtmutex.h | 2 | ||||
-rw-r--r-- | kernel/sysctl.c | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/include/linux/rtmutex.h b/include/linux/rtmutex.h index 281d8fd775e8..8d522ffeda33 100644 --- a/include/linux/rtmutex.h +++ b/include/linux/rtmutex.h | |||
@@ -16,6 +16,8 @@ | |||
16 | #include <linux/plist.h> | 16 | #include <linux/plist.h> |
17 | #include <linux/spinlock_types.h> | 17 | #include <linux/spinlock_types.h> |
18 | 18 | ||
19 | extern int max_lock_depth; /* for sysctl */ | ||
20 | |||
19 | /** | 21 | /** |
20 | * The rt_mutex structure | 22 | * The rt_mutex structure |
21 | * | 23 | * |
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 7635bb15f5af..622029ba5103 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -64,6 +64,9 @@ | |||
64 | #ifdef CONFIG_BSD_PROCESS_ACCT | 64 | #ifdef CONFIG_BSD_PROCESS_ACCT |
65 | #include <linux/acct.h> | 65 | #include <linux/acct.h> |
66 | #endif | 66 | #endif |
67 | #ifdef CONFIG_RT_MUTEXES | ||
68 | #include <linux/rtmutex.h> | ||
69 | #endif | ||
67 | #ifdef CONFIG_CHR_DEV_SG | 70 | #ifdef CONFIG_CHR_DEV_SG |
68 | #include <scsi/sg.h> | 71 | #include <scsi/sg.h> |
69 | #endif | 72 | #endif |
@@ -150,10 +153,6 @@ extern int unaligned_dump_stack; | |||
150 | 153 | ||
151 | extern struct ratelimit_state printk_ratelimit_state; | 154 | extern struct ratelimit_state printk_ratelimit_state; |
152 | 155 | ||
153 | #ifdef CONFIG_RT_MUTEXES | ||
154 | extern int max_lock_depth; | ||
155 | #endif | ||
156 | |||
157 | #ifdef CONFIG_PROC_SYSCTL | 156 | #ifdef CONFIG_PROC_SYSCTL |
158 | static int proc_do_cad_pid(struct ctl_table *table, int write, | 157 | static int proc_do_cad_pid(struct ctl_table *table, int write, |
159 | void __user *buffer, size_t *lenp, loff_t *ppos); | 158 | void __user *buffer, size_t *lenp, loff_t *ppos); |