summaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
authorHiroshi Shimamoto2008-07-08 03:37:04 +0200
committerIngo Molnar2008-07-18 18:29:28 +0200
commit4dca10a96041f78bed11ce9e4a5cfde813ec4ccb (patch)
tree114f22ddf2a8dd1ac96ddd56204d86d92db53242 /kernel/sysctl.c
parentMerge branch 'linus' into core/softlockup (diff)
downloadkernel-qcow2-linux-4dca10a96041f78bed11ce9e4a5cfde813ec4ccb.tar.gz
kernel-qcow2-linux-4dca10a96041f78bed11ce9e4a5cfde813ec4ccb.tar.xz
kernel-qcow2-linux-4dca10a96041f78bed11ce9e4a5cfde813ec4ccb.zip
softlockup: fix invalid proc_handler for softlockup_panic
The type of softlockup_panic is int, but the proc_handler is proc_doulongvec_minmax(). This handler is for unsigned long. This handler should be proc_dointvec_minmax(). Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 3e56d2f91414..ab59ac008caf 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -741,7 +741,7 @@ static struct ctl_table kern_table[] = {
.data = &softlockup_panic,
.maxlen = sizeof(int),
.mode = 0644,
- .proc_handler = &proc_doulongvec_minmax,
+ .proc_handler = &proc_dointvec_minmax,
.strategy = &sysctl_intvec,
.extra1 = &zero,
.extra2 = &one,