aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 29116652dca8..2d3b388c402d 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -729,6 +729,17 @@ static struct ctl_table kern_table[] = {
729#ifdef CONFIG_DETECT_SOFTLOCKUP 729#ifdef CONFIG_DETECT_SOFTLOCKUP
730 { 730 {
731 .ctl_name = CTL_UNNUMBERED, 731 .ctl_name = CTL_UNNUMBERED,
732 .procname = "softlockup_panic",
733 .data = &softlockup_panic,
734 .maxlen = sizeof(int),
735 .mode = 0644,
736 .proc_handler = &proc_doulongvec_minmax,
737 .strategy = &sysctl_intvec,
738 .extra1 = &zero,
739 .extra2 = &one,
740 },
741 {
742 .ctl_name = CTL_UNNUMBERED,
732 .procname = "softlockup_thresh", 743 .procname = "softlockup_thresh",
733 .data = &softlockup_thresh, 744 .data = &softlockup_thresh,
734 .maxlen = sizeof(unsigned long), 745 .maxlen = sizeof(unsigned long),