diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sysctl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 3b6b54c8ac0d..6d2aeff92b3d 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -90,6 +90,9 @@ extern int rcutorture_runnable; | |||
90 | #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */ | 90 | #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */ |
91 | 91 | ||
92 | /* Constants used for minimum and maximum */ | 92 | /* Constants used for minimum and maximum */ |
93 | #if defined(CONFIG_DETECT_HUNG_TASK) || defined(CONFIG_DETECT_SOFTLOCKUP) || defined(CONFIG_HIGHMEM) | ||
94 | static int one = 1; | ||
95 | #endif | ||
93 | #ifdef CONFIG_DETECT_SOFTLOCKUP | 96 | #ifdef CONFIG_DETECT_SOFTLOCKUP |
94 | static int sixty = 60; | 97 | static int sixty = 60; |
95 | static int neg_one = -1; | 98 | static int neg_one = -1; |
@@ -100,7 +103,6 @@ static int two = 2; | |||
100 | #endif | 103 | #endif |
101 | 104 | ||
102 | static int zero; | 105 | static int zero; |
103 | static int one = 1; | ||
104 | static unsigned long one_ul = 1; | 106 | static unsigned long one_ul = 1; |
105 | static int one_hundred = 100; | 107 | static int one_hundred = 100; |
106 | 108 | ||