aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index c398a58673a7..dd5b4496637e 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -122,7 +122,8 @@ extern int blk_iopoll_enabled;
122static int sixty = 60; 122static int sixty = 60;
123#endif 123#endif
124 124
125static int neg_one = -1; 125static int __maybe_unused neg_one = -1;
126
126static int zero; 127static int zero;
127static int __maybe_unused one = 1; 128static int __maybe_unused one = 1;
128static int __maybe_unused two = 2; 129static int __maybe_unused two = 2;
@@ -978,9 +979,10 @@ static struct ctl_table kern_table[] = {
978 { 979 {
979 .procname = "hung_task_warnings", 980 .procname = "hung_task_warnings",
980 .data = &sysctl_hung_task_warnings, 981 .data = &sysctl_hung_task_warnings,
981 .maxlen = sizeof(unsigned long), 982 .maxlen = sizeof(int),
982 .mode = 0644, 983 .mode = 0644,
983 .proc_handler = proc_doulongvec_minmax, 984 .proc_handler = proc_dointvec_minmax,
985 .extra1 = &neg_one,
984 }, 986 },
985#endif 987#endif
986#ifdef CONFIG_COMPAT 988#ifdef CONFIG_COMPAT