summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWANG Cong <amwang@redhat.com>2009-12-17 15:27:05 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2010-01-06 15:04:32 -0800
commit4b6d2635956c1ce642bc5dbfc8f460b516ed7e12 (patch)
treecef6093a85d358d703e72efa0fa320e38ff3f723
parent3ec268a6828ccc37a15e62a7836433b081342345 (diff)
kernel/sysctl.c: fix the incomplete part of sysctl_max_map_count-should-be-non-negative.patch
commit 3e26120cc7c819c97bc07281ca1fb9017cfe9a39 upstream. It is a mistake that we used 'proc_dointvec', it should be 'proc_dointvec_minmax', as in the original patch. Signed-off-by: WANG Cong <amwang@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--kernel/sysctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 3928c04965f0..dd84be9ac6e4 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -1607,7 +1607,7 @@ static struct ctl_table debug_table[] = {
.data = &show_unhandled_signals,
.maxlen = sizeof(int),
.mode = 0644,
- .proc_handler = proc_dointvec,
+ .proc_handler = proc_dointvec_minmax,
.extra1 = &zero,
},
#endif