Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Detect hard and soft lockups on a system |
| 3 | * |
| 4 | * started by Don Zickus, Copyright (C) 2010 Red Hat, Inc. |
| 5 | * |
Fernando Luis Vázquez Cao | 86f5e6a | 2012-02-09 17:42:22 -0500 | [diff] [blame] | 6 | * Note: Most of this code is borrowed heavily from the original softlockup |
| 7 | * detector, so thanks to Ingo for the initial implementation. |
| 8 | * Some chunks also taken from the old x86-specific nmi watchdog code, thanks |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 9 | * to those contributors as well. |
| 10 | */ |
| 11 | |
Andrew Morton | 4501980 | 2012-03-23 15:01:55 -0700 | [diff] [blame] | 12 | #define pr_fmt(fmt) "NMI watchdog: " fmt |
| 13 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 14 | #include <linux/mm.h> |
| 15 | #include <linux/cpu.h> |
| 16 | #include <linux/nmi.h> |
| 17 | #include <linux/init.h> |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 18 | #include <linux/module.h> |
| 19 | #include <linux/sysctl.h> |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 20 | #include <linux/smpboot.h> |
Clark Williams | 8bd75c7 | 2013-02-07 09:47:07 -0600 | [diff] [blame] | 21 | #include <linux/sched/rt.h> |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 22 | |
| 23 | #include <asm/irq_regs.h> |
Eric B Munson | 5d1c0f4 | 2012-03-10 14:37:28 -0500 | [diff] [blame] | 24 | #include <linux/kvm_para.h> |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 25 | #include <linux/perf_event.h> |
| 26 | |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 27 | int watchdog_user_enabled = 1; |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 28 | int __read_mostly watchdog_thresh = 10; |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 29 | #ifdef CONFIG_SMP |
| 30 | int __read_mostly sysctl_softlockup_all_cpu_backtrace; |
| 31 | #else |
| 32 | #define sysctl_softlockup_all_cpu_backtrace 0 |
| 33 | #endif |
| 34 | |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 35 | static int __read_mostly watchdog_running; |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 36 | static u64 __read_mostly sample_period; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 37 | |
| 38 | static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts); |
| 39 | static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog); |
| 40 | static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer); |
| 41 | static DEFINE_PER_CPU(bool, softlockup_touch_sync); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 42 | static DEFINE_PER_CPU(bool, soft_watchdog_warn); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 43 | static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts); |
| 44 | static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt); |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 45 | static DEFINE_PER_CPU(struct task_struct *, softlockup_task_ptr_saved); |
Frederic Weisbecker | 23637d4 | 2010-05-15 23:15:20 +0200 | [diff] [blame] | 46 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
Don Zickus | cafcd80 | 2010-05-14 11:11:21 -0400 | [diff] [blame] | 47 | static DEFINE_PER_CPU(bool, hard_watchdog_warn); |
| 48 | static DEFINE_PER_CPU(bool, watchdog_nmi_touch); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 49 | static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved); |
| 50 | static DEFINE_PER_CPU(struct perf_event *, watchdog_ev); |
| 51 | #endif |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 52 | static unsigned long soft_lockup_nmi_warn; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 53 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 54 | /* boot commands */ |
| 55 | /* |
| 56 | * Should we panic when a soft-lockup or hard-lockup occurs: |
| 57 | */ |
Frederic Weisbecker | 23637d4 | 2010-05-15 23:15:20 +0200 | [diff] [blame] | 58 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
Don Zickus | fef2c9b | 2011-03-22 16:34:16 -0700 | [diff] [blame] | 59 | static int hardlockup_panic = |
| 60 | CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 61 | |
| 62 | static int __init hardlockup_panic_setup(char *str) |
| 63 | { |
| 64 | if (!strncmp(str, "panic", 5)) |
| 65 | hardlockup_panic = 1; |
Don Zickus | fef2c9b | 2011-03-22 16:34:16 -0700 | [diff] [blame] | 66 | else if (!strncmp(str, "nopanic", 7)) |
| 67 | hardlockup_panic = 0; |
Don Zickus | 5dc3055 | 2010-11-29 17:07:17 -0500 | [diff] [blame] | 68 | else if (!strncmp(str, "0", 1)) |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 69 | watchdog_user_enabled = 0; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 70 | return 1; |
| 71 | } |
| 72 | __setup("nmi_watchdog=", hardlockup_panic_setup); |
| 73 | #endif |
| 74 | |
| 75 | unsigned int __read_mostly softlockup_panic = |
| 76 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE; |
| 77 | |
| 78 | static int __init softlockup_panic_setup(char *str) |
| 79 | { |
| 80 | softlockup_panic = simple_strtoul(str, NULL, 0); |
| 81 | |
| 82 | return 1; |
| 83 | } |
| 84 | __setup("softlockup_panic=", softlockup_panic_setup); |
| 85 | |
| 86 | static int __init nowatchdog_setup(char *str) |
| 87 | { |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 88 | watchdog_user_enabled = 0; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 89 | return 1; |
| 90 | } |
| 91 | __setup("nowatchdog", nowatchdog_setup); |
| 92 | |
| 93 | /* deprecated */ |
| 94 | static int __init nosoftlockup_setup(char *str) |
| 95 | { |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 96 | watchdog_user_enabled = 0; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 97 | return 1; |
| 98 | } |
| 99 | __setup("nosoftlockup", nosoftlockup_setup); |
| 100 | /* */ |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 101 | #ifdef CONFIG_SMP |
| 102 | static int __init softlockup_all_cpu_backtrace_setup(char *str) |
| 103 | { |
| 104 | sysctl_softlockup_all_cpu_backtrace = |
| 105 | !!simple_strtol(str, NULL, 0); |
| 106 | return 1; |
| 107 | } |
| 108 | __setup("softlockup_all_cpu_backtrace=", softlockup_all_cpu_backtrace_setup); |
| 109 | #endif |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 110 | |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 111 | /* |
| 112 | * Hard-lockup warnings should be triggered after just a few seconds. Soft- |
| 113 | * lockups can have false positives under extreme conditions. So we generally |
| 114 | * want a higher threshold for soft lockups than for hard lockups. So we couple |
| 115 | * the thresholds with a factor: we make the soft threshold twice the amount of |
| 116 | * time the hard threshold is. |
| 117 | */ |
Ingo Molnar | 6e9101a | 2011-05-24 05:43:18 +0200 | [diff] [blame] | 118 | static int get_softlockup_thresh(void) |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 119 | { |
| 120 | return watchdog_thresh * 2; |
| 121 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 122 | |
| 123 | /* |
| 124 | * Returns seconds, approximately. We don't need nanosecond |
| 125 | * resolution, and we don't need to waste time with a big divide when |
| 126 | * 2^30ns == 1.074s. |
| 127 | */ |
Namhyung Kim | c06b4f1 | 2012-12-27 11:49:44 +0900 | [diff] [blame] | 128 | static unsigned long get_timestamp(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 129 | { |
Namhyung Kim | c06b4f1 | 2012-12-27 11:49:44 +0900 | [diff] [blame] | 130 | return local_clock() >> 30LL; /* 2^30 ~= 10^9 */ |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 131 | } |
| 132 | |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 133 | static void set_sample_period(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 134 | { |
| 135 | /* |
Mandeep Singh Baines | 586692a | 2011-05-22 22:10:22 -0700 | [diff] [blame] | 136 | * convert watchdog_thresh from seconds to ns |
Fernando Luis Vázquez Cao | 86f5e6a | 2012-02-09 17:42:22 -0500 | [diff] [blame] | 137 | * the divide by 5 is to give hrtimer several chances (two |
| 138 | * or three with the current relation between the soft |
| 139 | * and hard thresholds) to increment before the |
| 140 | * hardlockup detector generates a warning |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 141 | */ |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 142 | sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | /* Commands for resetting the watchdog */ |
| 146 | static void __touch_watchdog(void) |
| 147 | { |
Namhyung Kim | c06b4f1 | 2012-12-27 11:49:44 +0900 | [diff] [blame] | 148 | __this_cpu_write(watchdog_touch_ts, get_timestamp()); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 149 | } |
| 150 | |
Don Zickus | 332fbdb | 2010-05-07 17:11:45 -0400 | [diff] [blame] | 151 | void touch_softlockup_watchdog(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 152 | { |
Andrew Morton | 7861144 | 2014-04-18 15:07:12 -0700 | [diff] [blame] | 153 | /* |
| 154 | * Preemption can be enabled. It doesn't matter which CPU's timestamp |
| 155 | * gets zeroed here, so use the raw_ operation. |
| 156 | */ |
| 157 | raw_cpu_write(watchdog_touch_ts, 0); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 158 | } |
Ingo Molnar | 0167c78 | 2010-05-13 08:53:33 +0200 | [diff] [blame] | 159 | EXPORT_SYMBOL(touch_softlockup_watchdog); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 160 | |
Don Zickus | 332fbdb | 2010-05-07 17:11:45 -0400 | [diff] [blame] | 161 | void touch_all_softlockup_watchdogs(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 162 | { |
| 163 | int cpu; |
| 164 | |
| 165 | /* |
| 166 | * this is done lockless |
| 167 | * do we care if a 0 races with a timestamp? |
| 168 | * all it means is the softlock check starts one cycle later |
| 169 | */ |
| 170 | for_each_online_cpu(cpu) |
| 171 | per_cpu(watchdog_touch_ts, cpu) = 0; |
| 172 | } |
| 173 | |
Don Zickus | cafcd80 | 2010-05-14 11:11:21 -0400 | [diff] [blame] | 174 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 175 | void touch_nmi_watchdog(void) |
| 176 | { |
Ben Zhang | 62572e2 | 2014-04-03 14:47:18 -0700 | [diff] [blame] | 177 | /* |
| 178 | * Using __raw here because some code paths have |
| 179 | * preemption enabled. If preemption is enabled |
| 180 | * then interrupts should be enabled too, in which |
| 181 | * case we shouldn't have to worry about the watchdog |
| 182 | * going off. |
| 183 | */ |
| 184 | __raw_get_cpu_var(watchdog_nmi_touch) = true; |
Don Zickus | 332fbdb | 2010-05-07 17:11:45 -0400 | [diff] [blame] | 185 | touch_softlockup_watchdog(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 186 | } |
| 187 | EXPORT_SYMBOL(touch_nmi_watchdog); |
| 188 | |
Don Zickus | cafcd80 | 2010-05-14 11:11:21 -0400 | [diff] [blame] | 189 | #endif |
| 190 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 191 | void touch_softlockup_watchdog_sync(void) |
| 192 | { |
| 193 | __raw_get_cpu_var(softlockup_touch_sync) = true; |
| 194 | __raw_get_cpu_var(watchdog_touch_ts) = 0; |
| 195 | } |
| 196 | |
Frederic Weisbecker | 23637d4 | 2010-05-15 23:15:20 +0200 | [diff] [blame] | 197 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 198 | /* watchdog detector functions */ |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 199 | static int is_hardlockup(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 200 | { |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 201 | unsigned long hrint = __this_cpu_read(hrtimer_interrupts); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 202 | |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 203 | if (__this_cpu_read(hrtimer_interrupts_saved) == hrint) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 204 | return 1; |
| 205 | |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 206 | __this_cpu_write(hrtimer_interrupts_saved, hrint); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | #endif |
| 210 | |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 211 | static int is_softlockup(unsigned long touch_ts) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 212 | { |
Namhyung Kim | c06b4f1 | 2012-12-27 11:49:44 +0900 | [diff] [blame] | 213 | unsigned long now = get_timestamp(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 214 | |
| 215 | /* Warn about unreasonable delays: */ |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 216 | if (time_after(now, touch_ts + get_softlockup_thresh())) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 217 | return now - touch_ts; |
| 218 | |
| 219 | return 0; |
| 220 | } |
| 221 | |
Frederic Weisbecker | 23637d4 | 2010-05-15 23:15:20 +0200 | [diff] [blame] | 222 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
Cyrill Gorcunov | 1880c4a | 2011-06-23 16:49:18 +0400 | [diff] [blame] | 223 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 224 | static struct perf_event_attr wd_hw_attr = { |
| 225 | .type = PERF_TYPE_HARDWARE, |
| 226 | .config = PERF_COUNT_HW_CPU_CYCLES, |
| 227 | .size = sizeof(struct perf_event_attr), |
| 228 | .pinned = 1, |
| 229 | .disabled = 1, |
| 230 | }; |
| 231 | |
| 232 | /* Callback function for perf event subsystem */ |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 233 | static void watchdog_overflow_callback(struct perf_event *event, |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 234 | struct perf_sample_data *data, |
| 235 | struct pt_regs *regs) |
| 236 | { |
Peter Zijlstra | c6db67c | 2010-08-20 11:49:15 +0200 | [diff] [blame] | 237 | /* Ensure the watchdog never gets throttled */ |
| 238 | event->hw.interrupts = 0; |
| 239 | |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 240 | if (__this_cpu_read(watchdog_nmi_touch) == true) { |
| 241 | __this_cpu_write(watchdog_nmi_touch, false); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 242 | return; |
| 243 | } |
| 244 | |
| 245 | /* check for a hardlockup |
| 246 | * This is done by making sure our timer interrupt |
| 247 | * is incrementing. The timer interrupt should have |
| 248 | * fired multiple times before we overflow'd. If it hasn't |
| 249 | * then this is a good indication the cpu is stuck |
| 250 | */ |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 251 | if (is_hardlockup()) { |
| 252 | int this_cpu = smp_processor_id(); |
| 253 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 254 | /* only print hardlockups once */ |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 255 | if (__this_cpu_read(hard_watchdog_warn) == true) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 256 | return; |
| 257 | |
| 258 | if (hardlockup_panic) |
Fabian Frederick | 656c3b7 | 2014-08-06 16:04:03 -0700 | [diff] [blame] | 259 | panic("Watchdog detected hard LOCKUP on cpu %d", |
| 260 | this_cpu); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 261 | else |
Fabian Frederick | 656c3b7 | 2014-08-06 16:04:03 -0700 | [diff] [blame] | 262 | WARN(1, "Watchdog detected hard LOCKUP on cpu %d", |
| 263 | this_cpu); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 264 | |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 265 | __this_cpu_write(hard_watchdog_warn, true); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 266 | return; |
| 267 | } |
| 268 | |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 269 | __this_cpu_write(hard_watchdog_warn, false); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 270 | return; |
| 271 | } |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 272 | #endif /* CONFIG_HARDLOCKUP_DETECTOR */ |
| 273 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 274 | static void watchdog_interrupt_count(void) |
| 275 | { |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 276 | __this_cpu_inc(hrtimer_interrupts); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 277 | } |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 278 | |
| 279 | static int watchdog_nmi_enable(unsigned int cpu); |
| 280 | static void watchdog_nmi_disable(unsigned int cpu); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 281 | |
| 282 | /* watchdog kicker functions */ |
| 283 | static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer) |
| 284 | { |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 285 | unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 286 | struct pt_regs *regs = get_irq_regs(); |
| 287 | int duration; |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 288 | int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 289 | |
| 290 | /* kick the hardlockup detector */ |
| 291 | watchdog_interrupt_count(); |
| 292 | |
| 293 | /* kick the softlockup detector */ |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 294 | wake_up_process(__this_cpu_read(softlockup_watchdog)); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 295 | |
| 296 | /* .. and repeat */ |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 297 | hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period)); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 298 | |
| 299 | if (touch_ts == 0) { |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 300 | if (unlikely(__this_cpu_read(softlockup_touch_sync))) { |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 301 | /* |
| 302 | * If the time stamp was touched atomically |
| 303 | * make sure the scheduler tick is up to date. |
| 304 | */ |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 305 | __this_cpu_write(softlockup_touch_sync, false); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 306 | sched_clock_tick(); |
| 307 | } |
Eric B Munson | 5d1c0f4 | 2012-03-10 14:37:28 -0500 | [diff] [blame] | 308 | |
| 309 | /* Clear the guest paused flag on watchdog reset */ |
| 310 | kvm_check_and_clear_guest_paused(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 311 | __touch_watchdog(); |
| 312 | return HRTIMER_RESTART; |
| 313 | } |
| 314 | |
| 315 | /* check for a softlockup |
| 316 | * This is done by making sure a high priority task is |
| 317 | * being scheduled. The task touches the watchdog to |
| 318 | * indicate it is getting cpu time. If it hasn't then |
| 319 | * this is a good indication some task is hogging the cpu |
| 320 | */ |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 321 | duration = is_softlockup(touch_ts); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 322 | if (unlikely(duration)) { |
Eric B Munson | 5d1c0f4 | 2012-03-10 14:37:28 -0500 | [diff] [blame] | 323 | /* |
| 324 | * If a virtual machine is stopped by the host it can look to |
| 325 | * the watchdog like a soft lockup, check to see if the host |
| 326 | * stopped the vm before we issue the warning |
| 327 | */ |
| 328 | if (kvm_check_and_clear_guest_paused()) |
| 329 | return HRTIMER_RESTART; |
| 330 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 331 | /* only warn once */ |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 332 | if (__this_cpu_read(soft_watchdog_warn) == true) { |
| 333 | /* |
| 334 | * When multiple processes are causing softlockups the |
| 335 | * softlockup detector only warns on the first one |
| 336 | * because the code relies on a full quiet cycle to |
| 337 | * re-arm. The second process prevents the quiet cycle |
| 338 | * and never gets reported. Use task pointers to detect |
| 339 | * this. |
| 340 | */ |
| 341 | if (__this_cpu_read(softlockup_task_ptr_saved) != |
| 342 | current) { |
| 343 | __this_cpu_write(soft_watchdog_warn, false); |
| 344 | __touch_watchdog(); |
| 345 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 346 | return HRTIMER_RESTART; |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 347 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 348 | |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 349 | if (softlockup_all_cpu_backtrace) { |
| 350 | /* Prevent multiple soft-lockup reports if one cpu is already |
| 351 | * engaged in dumping cpu back traces |
| 352 | */ |
| 353 | if (test_and_set_bit(0, &soft_lockup_nmi_warn)) { |
| 354 | /* Someone else will report us. Let's give up */ |
| 355 | __this_cpu_write(soft_watchdog_warn, true); |
| 356 | return HRTIMER_RESTART; |
| 357 | } |
| 358 | } |
| 359 | |
Fabian Frederick | 656c3b7 | 2014-08-06 16:04:03 -0700 | [diff] [blame] | 360 | pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n", |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 361 | smp_processor_id(), duration, |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 362 | current->comm, task_pid_nr(current)); |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 363 | __this_cpu_write(softlockup_task_ptr_saved, current); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 364 | print_modules(); |
| 365 | print_irqtrace_events(current); |
| 366 | if (regs) |
| 367 | show_regs(regs); |
| 368 | else |
| 369 | dump_stack(); |
| 370 | |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 371 | if (softlockup_all_cpu_backtrace) { |
| 372 | /* Avoid generating two back traces for current |
| 373 | * given that one is already made above |
| 374 | */ |
| 375 | trigger_allbutself_cpu_backtrace(); |
| 376 | |
| 377 | clear_bit(0, &soft_lockup_nmi_warn); |
| 378 | /* Barrier to sync with other cpus */ |
| 379 | smp_mb__after_atomic(); |
| 380 | } |
| 381 | |
Josh Hunt | 69361ee | 2014-08-08 14:22:31 -0700 | [diff] [blame] | 382 | add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 383 | if (softlockup_panic) |
| 384 | panic("softlockup: hung tasks"); |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 385 | __this_cpu_write(soft_watchdog_warn, true); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 386 | } else |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 387 | __this_cpu_write(soft_watchdog_warn, false); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 388 | |
| 389 | return HRTIMER_RESTART; |
| 390 | } |
| 391 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 392 | static void watchdog_set_prio(unsigned int policy, unsigned int prio) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 393 | { |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 394 | struct sched_param param = { .sched_priority = prio }; |
| 395 | |
| 396 | sched_setscheduler(current, policy, ¶m); |
| 397 | } |
| 398 | |
| 399 | static void watchdog_enable(unsigned int cpu) |
| 400 | { |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 401 | struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 402 | |
Bjørn Mork | 3935e895 | 2012-12-19 20:51:31 +0100 | [diff] [blame] | 403 | /* kick off the timer for the hardlockup detector */ |
| 404 | hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 405 | hrtimer->function = watchdog_timer_fn; |
| 406 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 407 | /* Enable the perf event */ |
| 408 | watchdog_nmi_enable(cpu); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 409 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 410 | /* done here because hrtimer_start can only pin to smp_processor_id() */ |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 411 | hrtimer_start(hrtimer, ns_to_ktime(sample_period), |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 412 | HRTIMER_MODE_REL_PINNED); |
| 413 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 414 | /* initialize timestamp */ |
| 415 | watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1); |
| 416 | __touch_watchdog(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 417 | } |
| 418 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 419 | static void watchdog_disable(unsigned int cpu) |
| 420 | { |
| 421 | struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer); |
| 422 | |
| 423 | watchdog_set_prio(SCHED_NORMAL, 0); |
| 424 | hrtimer_cancel(hrtimer); |
| 425 | /* disable the perf event */ |
| 426 | watchdog_nmi_disable(cpu); |
| 427 | } |
| 428 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 429 | static void watchdog_cleanup(unsigned int cpu, bool online) |
| 430 | { |
| 431 | watchdog_disable(cpu); |
| 432 | } |
| 433 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 434 | static int watchdog_should_run(unsigned int cpu) |
| 435 | { |
| 436 | return __this_cpu_read(hrtimer_interrupts) != |
| 437 | __this_cpu_read(soft_lockup_hrtimer_cnt); |
| 438 | } |
| 439 | |
| 440 | /* |
| 441 | * The watchdog thread function - touches the timestamp. |
| 442 | * |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 443 | * It only runs once every sample_period seconds (4 seconds by |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 444 | * default) to reset the softlockup timestamp. If this gets delayed |
| 445 | * for more than 2*watchdog_thresh seconds then the debug-printout |
| 446 | * triggers in watchdog_timer_fn(). |
| 447 | */ |
| 448 | static void watchdog(unsigned int cpu) |
| 449 | { |
| 450 | __this_cpu_write(soft_lockup_hrtimer_cnt, |
| 451 | __this_cpu_read(hrtimer_interrupts)); |
| 452 | __touch_watchdog(); |
| 453 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 454 | |
Frederic Weisbecker | 23637d4 | 2010-05-15 23:15:20 +0200 | [diff] [blame] | 455 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
Don Zickus | a702704 | 2012-06-13 09:35:48 -0400 | [diff] [blame] | 456 | /* |
| 457 | * People like the simple clean cpu node info on boot. |
| 458 | * Reduce the watchdog noise by only printing messages |
| 459 | * that are different from what cpu0 displayed. |
| 460 | */ |
| 461 | static unsigned long cpu0_err; |
| 462 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 463 | static int watchdog_nmi_enable(unsigned int cpu) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 464 | { |
| 465 | struct perf_event_attr *wd_attr; |
| 466 | struct perf_event *event = per_cpu(watchdog_ev, cpu); |
| 467 | |
| 468 | /* is it already setup and enabled? */ |
| 469 | if (event && event->state > PERF_EVENT_STATE_OFF) |
| 470 | goto out; |
| 471 | |
| 472 | /* it is setup but not enabled */ |
| 473 | if (event != NULL) |
| 474 | goto out_enable; |
| 475 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 476 | wd_attr = &wd_hw_attr; |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 477 | wd_attr->sample_period = hw_nmi_get_sample_period(watchdog_thresh); |
Cyrill Gorcunov | 1880c4a | 2011-06-23 16:49:18 +0400 | [diff] [blame] | 478 | |
| 479 | /* Try to register using hardware perf events */ |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 480 | event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL); |
Don Zickus | a702704 | 2012-06-13 09:35:48 -0400 | [diff] [blame] | 481 | |
| 482 | /* save cpu0 error for future comparision */ |
| 483 | if (cpu == 0 && IS_ERR(event)) |
| 484 | cpu0_err = PTR_ERR(event); |
| 485 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 486 | if (!IS_ERR(event)) { |
Don Zickus | a702704 | 2012-06-13 09:35:48 -0400 | [diff] [blame] | 487 | /* only print for cpu0 or different than cpu0 */ |
| 488 | if (cpu == 0 || cpu0_err) |
| 489 | pr_info("enabled on all CPUs, permanently consumes one hw-PMU counter.\n"); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 490 | goto out_save; |
| 491 | } |
| 492 | |
Don Zickus | a702704 | 2012-06-13 09:35:48 -0400 | [diff] [blame] | 493 | /* skip displaying the same error again */ |
| 494 | if (cpu > 0 && (PTR_ERR(event) == cpu0_err)) |
| 495 | return PTR_ERR(event); |
Don Zickus | 5651f7f | 2011-02-09 14:02:33 -0500 | [diff] [blame] | 496 | |
| 497 | /* vary the KERN level based on the returned errno */ |
| 498 | if (PTR_ERR(event) == -EOPNOTSUPP) |
Andrew Morton | 4501980 | 2012-03-23 15:01:55 -0700 | [diff] [blame] | 499 | pr_info("disabled (cpu%i): not supported (no LAPIC?)\n", cpu); |
Don Zickus | 5651f7f | 2011-02-09 14:02:33 -0500 | [diff] [blame] | 500 | else if (PTR_ERR(event) == -ENOENT) |
Fabian Frederick | 656c3b7 | 2014-08-06 16:04:03 -0700 | [diff] [blame] | 501 | pr_warn("disabled (cpu%i): hardware events not enabled\n", |
Andrew Morton | 4501980 | 2012-03-23 15:01:55 -0700 | [diff] [blame] | 502 | cpu); |
Don Zickus | 5651f7f | 2011-02-09 14:02:33 -0500 | [diff] [blame] | 503 | else |
Andrew Morton | 4501980 | 2012-03-23 15:01:55 -0700 | [diff] [blame] | 504 | pr_err("disabled (cpu%i): unable to create perf event: %ld\n", |
| 505 | cpu, PTR_ERR(event)); |
Akinobu Mita | eac2433 | 2010-08-31 23:00:08 -0400 | [diff] [blame] | 506 | return PTR_ERR(event); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 507 | |
| 508 | /* success path */ |
| 509 | out_save: |
| 510 | per_cpu(watchdog_ev, cpu) = event; |
| 511 | out_enable: |
| 512 | perf_event_enable(per_cpu(watchdog_ev, cpu)); |
| 513 | out: |
| 514 | return 0; |
| 515 | } |
| 516 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 517 | static void watchdog_nmi_disable(unsigned int cpu) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 518 | { |
| 519 | struct perf_event *event = per_cpu(watchdog_ev, cpu); |
| 520 | |
| 521 | if (event) { |
| 522 | perf_event_disable(event); |
| 523 | per_cpu(watchdog_ev, cpu) = NULL; |
| 524 | |
| 525 | /* should be in cleanup, but blocks oprofile */ |
| 526 | perf_event_release_kernel(event); |
| 527 | } |
Ulrich Obergfell | df57714 | 2014-08-11 10:49:25 -0400 | [diff] [blame] | 528 | if (cpu == 0) { |
| 529 | /* watchdog_nmi_enable() expects this to be zero initially. */ |
| 530 | cpu0_err = 0; |
| 531 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 532 | } |
| 533 | #else |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 534 | static int watchdog_nmi_enable(unsigned int cpu) { return 0; } |
| 535 | static void watchdog_nmi_disable(unsigned int cpu) { return; } |
Frederic Weisbecker | 23637d4 | 2010-05-15 23:15:20 +0200 | [diff] [blame] | 536 | #endif /* CONFIG_HARDLOCKUP_DETECTOR */ |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 537 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 538 | static struct smp_hotplug_thread watchdog_threads = { |
| 539 | .store = &softlockup_watchdog, |
| 540 | .thread_should_run = watchdog_should_run, |
| 541 | .thread_fn = watchdog, |
| 542 | .thread_comm = "watchdog/%u", |
| 543 | .setup = watchdog_enable, |
| 544 | .cleanup = watchdog_cleanup, |
| 545 | .park = watchdog_disable, |
| 546 | .unpark = watchdog_enable, |
| 547 | }; |
| 548 | |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 549 | static void restart_watchdog_hrtimer(void *info) |
| 550 | { |
| 551 | struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer); |
| 552 | int ret; |
| 553 | |
| 554 | /* |
| 555 | * No need to cancel and restart hrtimer if it is currently executing |
| 556 | * because it will reprogram itself with the new period now. |
| 557 | * We should never see it unqueued here because we are running per-cpu |
| 558 | * with interrupts disabled. |
| 559 | */ |
| 560 | ret = hrtimer_try_to_cancel(hrtimer); |
| 561 | if (ret == 1) |
| 562 | hrtimer_start(hrtimer, ns_to_ktime(sample_period), |
| 563 | HRTIMER_MODE_REL_PINNED); |
| 564 | } |
| 565 | |
| 566 | static void update_timers(int cpu) |
| 567 | { |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 568 | /* |
| 569 | * Make sure that perf event counter will adopt to a new |
| 570 | * sampling period. Updating the sampling period directly would |
| 571 | * be much nicer but we do not have an API for that now so |
| 572 | * let's use a big hammer. |
| 573 | * Hrtimer will adopt the new period on the next tick but this |
| 574 | * might be late already so we have to restart the timer as well. |
| 575 | */ |
| 576 | watchdog_nmi_disable(cpu); |
Frederic Weisbecker | e0a23b06 | 2014-02-24 16:40:00 +0100 | [diff] [blame] | 577 | smp_call_function_single(cpu, restart_watchdog_hrtimer, NULL, 1); |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 578 | watchdog_nmi_enable(cpu); |
| 579 | } |
| 580 | |
| 581 | static void update_timers_all_cpus(void) |
| 582 | { |
| 583 | int cpu; |
| 584 | |
| 585 | get_online_cpus(); |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 586 | for_each_online_cpu(cpu) |
| 587 | update_timers(cpu); |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 588 | put_online_cpus(); |
| 589 | } |
| 590 | |
| 591 | static int watchdog_enable_all_cpus(bool sample_period_changed) |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 592 | { |
| 593 | int err = 0; |
| 594 | |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 595 | if (!watchdog_running) { |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 596 | err = smpboot_register_percpu_thread(&watchdog_threads); |
| 597 | if (err) |
| 598 | pr_err("Failed to create watchdog threads, disabled\n"); |
| 599 | else |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 600 | watchdog_running = 1; |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 601 | } else if (sample_period_changed) { |
| 602 | update_timers_all_cpus(); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | return err; |
| 606 | } |
| 607 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 608 | /* prepare/enable/disable routines */ |
Vasily Averin | 4ff8195 | 2011-10-31 17:11:18 -0700 | [diff] [blame] | 609 | /* sysctl functions */ |
| 610 | #ifdef CONFIG_SYSCTL |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 611 | static void watchdog_disable_all_cpus(void) |
| 612 | { |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 613 | if (watchdog_running) { |
| 614 | watchdog_running = 0; |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 615 | smpboot_unregister_percpu_thread(&watchdog_threads); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 616 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 617 | } |
| 618 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 619 | /* |
Mandeep Singh Baines | 586692a | 2011-05-22 22:10:22 -0700 | [diff] [blame] | 620 | * proc handler for /proc/sys/kernel/nmi_watchdog,watchdog_thresh |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 621 | */ |
| 622 | |
Mandeep Singh Baines | 586692a | 2011-05-22 22:10:22 -0700 | [diff] [blame] | 623 | int proc_dowatchdog(struct ctl_table *table, int write, |
| 624 | void __user *buffer, size_t *lenp, loff_t *ppos) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 625 | { |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 626 | int err, old_thresh, old_enabled; |
Michal Hocko | 359e6fa | 2013-09-24 15:27:29 -0700 | [diff] [blame] | 627 | static DEFINE_MUTEX(watchdog_proc_mutex); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 628 | |
Michal Hocko | 359e6fa | 2013-09-24 15:27:29 -0700 | [diff] [blame] | 629 | mutex_lock(&watchdog_proc_mutex); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 630 | old_thresh = ACCESS_ONCE(watchdog_thresh); |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 631 | old_enabled = ACCESS_ONCE(watchdog_user_enabled); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 632 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 633 | err = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
| 634 | if (err || !write) |
Michal Hocko | 359e6fa | 2013-09-24 15:27:29 -0700 | [diff] [blame] | 635 | goto out; |
Mandeep Singh Baines | e04ab2b | 2011-05-22 22:10:21 -0700 | [diff] [blame] | 636 | |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 637 | set_sample_period(); |
anish kumar | b66a2356 | 2013-03-12 14:44:08 -0400 | [diff] [blame] | 638 | /* |
| 639 | * Watchdog threads shouldn't be enabled if they are |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 640 | * disabled. The 'watchdog_running' variable check in |
anish kumar | b66a2356 | 2013-03-12 14:44:08 -0400 | [diff] [blame] | 641 | * watchdog_*_all_cpus() function takes care of this. |
| 642 | */ |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 643 | if (watchdog_user_enabled && watchdog_thresh) |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 644 | err = watchdog_enable_all_cpus(old_thresh != watchdog_thresh); |
Mandeep Singh Baines | e04ab2b | 2011-05-22 22:10:21 -0700 | [diff] [blame] | 645 | else |
| 646 | watchdog_disable_all_cpus(); |
| 647 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 648 | /* Restore old values on failure */ |
| 649 | if (err) { |
| 650 | watchdog_thresh = old_thresh; |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 651 | watchdog_user_enabled = old_enabled; |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 652 | } |
Michal Hocko | 359e6fa | 2013-09-24 15:27:29 -0700 | [diff] [blame] | 653 | out: |
| 654 | mutex_unlock(&watchdog_proc_mutex); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 655 | return err; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 656 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 657 | #endif /* CONFIG_SYSCTL */ |
| 658 | |
Peter Zijlstra | 004417a | 2010-11-25 18:38:29 +0100 | [diff] [blame] | 659 | void __init lockup_detector_init(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 660 | { |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 661 | set_sample_period(); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 662 | |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 663 | if (watchdog_user_enabled) |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 664 | watchdog_enable_all_cpus(false); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 665 | } |