diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/softlockup.c | 12 | ||||
-rw-r--r-- | kernel/sysctl.c | 9 |
2 files changed, 15 insertions, 6 deletions
diff --git a/kernel/softlockup.c b/kernel/softlockup.c index 78e0ad21cb0c..a3a0b239b7f7 100644 --- a/kernel/softlockup.c +++ b/kernel/softlockup.c | |||
@@ -25,7 +25,7 @@ static DEFINE_PER_CPU(unsigned long, print_timestamp); | |||
25 | static DEFINE_PER_CPU(struct task_struct *, watchdog_task); | 25 | static DEFINE_PER_CPU(struct task_struct *, watchdog_task); |
26 | 26 | ||
27 | static int __read_mostly did_panic; | 27 | static int __read_mostly did_panic; |
28 | unsigned long __read_mostly softlockup_thresh = 60; | 28 | int __read_mostly softlockup_thresh = 60; |
29 | 29 | ||
30 | /* | 30 | /* |
31 | * Should we panic (and reboot, if panic_timeout= is set) when a | 31 | * Should we panic (and reboot, if panic_timeout= is set) when a |
@@ -94,6 +94,14 @@ void softlockup_tick(void) | |||
94 | struct pt_regs *regs = get_irq_regs(); | 94 | struct pt_regs *regs = get_irq_regs(); |
95 | unsigned long now; | 95 | unsigned long now; |
96 | 96 | ||
97 | /* Is detection switched off? */ | ||
98 | if (!per_cpu(watchdog_task, this_cpu) || softlockup_thresh <= 0) { | ||
99 | /* Be sure we don't false trigger if switched back on */ | ||
100 | if (touch_timestamp) | ||
101 | per_cpu(touch_timestamp, this_cpu) = 0; | ||
102 | return; | ||
103 | } | ||
104 | |||
97 | if (touch_timestamp == 0) { | 105 | if (touch_timestamp == 0) { |
98 | touch_softlockup_watchdog(); | 106 | touch_softlockup_watchdog(); |
99 | return; | 107 | return; |
@@ -104,7 +112,7 @@ void softlockup_tick(void) | |||
104 | /* report at most once a second */ | 112 | /* report at most once a second */ |
105 | if ((print_timestamp >= touch_timestamp && | 113 | if ((print_timestamp >= touch_timestamp && |
106 | print_timestamp < (touch_timestamp + 1)) || | 114 | print_timestamp < (touch_timestamp + 1)) || |
107 | did_panic || !per_cpu(watchdog_task, this_cpu)) { | 115 | did_panic) { |
108 | return; | 116 | return; |
109 | } | 117 | } |
110 | 118 | ||
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 2d3b388c402d..31c19a79738d 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -84,12 +84,13 @@ extern int latencytop_enabled; | |||
84 | extern int sysctl_nr_open_min, sysctl_nr_open_max; | 84 | extern int sysctl_nr_open_min, sysctl_nr_open_max; |
85 | 85 | ||
86 | /* Constants used for minimum and maximum */ | 86 | /* Constants used for minimum and maximum */ |
87 | #if defined(CONFIG_DETECT_SOFTLOCKUP) || defined(CONFIG_HIGHMEM) | 87 | #ifdef CONFIG_HIGHMEM |
88 | static int one = 1; | 88 | static int one = 1; |
89 | #endif | 89 | #endif |
90 | 90 | ||
91 | #ifdef CONFIG_DETECT_SOFTLOCKUP | 91 | #ifdef CONFIG_DETECT_SOFTLOCKUP |
92 | static int sixty = 60; | 92 | static int sixty = 60; |
93 | static int neg_one = -1; | ||
93 | #endif | 94 | #endif |
94 | 95 | ||
95 | #ifdef CONFIG_MMU | 96 | #ifdef CONFIG_MMU |
@@ -742,11 +743,11 @@ static struct ctl_table kern_table[] = { | |||
742 | .ctl_name = CTL_UNNUMBERED, | 743 | .ctl_name = CTL_UNNUMBERED, |
743 | .procname = "softlockup_thresh", | 744 | .procname = "softlockup_thresh", |
744 | .data = &softlockup_thresh, | 745 | .data = &softlockup_thresh, |
745 | .maxlen = sizeof(unsigned long), | 746 | .maxlen = sizeof(int), |
746 | .mode = 0644, | 747 | .mode = 0644, |
747 | .proc_handler = &proc_doulongvec_minmax, | 748 | .proc_handler = &proc_dointvec_minmax, |
748 | .strategy = &sysctl_intvec, | 749 | .strategy = &sysctl_intvec, |
749 | .extra1 = &one, | 750 | .extra1 = &neg_one, |
750 | .extra2 = &sixty, | 751 | .extra2 = &sixty, |
751 | }, | 752 | }, |
752 | { | 753 | { |