aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/sched.h2
-rw-r--r--kernel/softlockup.c12
-rw-r--r--kernel/sysctl.c9
3 files changed, 16 insertions, 7 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 71f5972dc48e..ea26221644e2 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -295,10 +295,10 @@ extern void spawn_softlockup_task(void);
295extern void touch_softlockup_watchdog(void); 295extern void touch_softlockup_watchdog(void);
296extern void touch_all_softlockup_watchdogs(void); 296extern void touch_all_softlockup_watchdogs(void);
297extern unsigned int softlockup_panic; 297extern unsigned int softlockup_panic;
298extern unsigned long softlockup_thresh;
299extern unsigned long sysctl_hung_task_check_count; 298extern unsigned long sysctl_hung_task_check_count;
300extern unsigned long sysctl_hung_task_timeout_secs; 299extern unsigned long sysctl_hung_task_timeout_secs;
301extern unsigned long sysctl_hung_task_warnings; 300extern unsigned long sysctl_hung_task_warnings;
301extern int softlockup_thresh;
302#else 302#else
303static inline void softlockup_tick(void) 303static inline void softlockup_tick(void)
304{ 304{
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);
25static DEFINE_PER_CPU(struct task_struct *, watchdog_task); 25static DEFINE_PER_CPU(struct task_struct *, watchdog_task);
26 26
27static int __read_mostly did_panic; 27static int __read_mostly did_panic;
28unsigned long __read_mostly softlockup_thresh = 60; 28int __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;
84extern int sysctl_nr_open_min, sysctl_nr_open_max; 84extern 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
88static int one = 1; 88static int one = 1;
89#endif 89#endif
90 90
91#ifdef CONFIG_DETECT_SOFTLOCKUP 91#ifdef CONFIG_DETECT_SOFTLOCKUP
92static int sixty = 60; 92static int sixty = 60;
93static 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 {