blob: 1fba9c3d66dcc403eff812968c87148407c7c5de [file] [log] [blame]
Don Zickus58687ac2010-05-07 17:11:44 -04001/*
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 Cao86f5e6a2012-02-09 17:42:22 -05006 * 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 Zickus58687ac2010-05-07 17:11:44 -04009 * to those contributors as well.
10 */
11
Andrew Morton45019802012-03-23 15:01:55 -070012#define pr_fmt(fmt) "NMI watchdog: " fmt
13
Don Zickus58687ac2010-05-07 17:11:44 -040014#include <linux/mm.h>
15#include <linux/cpu.h>
16#include <linux/nmi.h>
17#include <linux/init.h>
Don Zickus58687ac2010-05-07 17:11:44 -040018#include <linux/module.h>
19#include <linux/sysctl.h>
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000020#include <linux/smpboot.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060021#include <linux/sched/rt.h>
Ingo Molnarae7e81c2017-02-01 18:07:51 +010022#include <uapi/linux/sched/types.h>
Chris Metcalffe4ba3c2015-06-24 16:55:45 -070023#include <linux/tick.h>
Tejun Heo82607adc2015-12-08 11:28:04 -050024#include <linux/workqueue.h>
Ingo Molnare6017572017-02-01 16:36:40 +010025#include <linux/sched/clock.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010026#include <linux/sched/debug.h>
Don Zickus58687ac2010-05-07 17:11:44 -040027
28#include <asm/irq_regs.h>
Eric B Munson5d1c0f42012-03-10 14:37:28 -050029#include <linux/kvm_para.h>
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -070030#include <linux/kthread.h>
Don Zickus58687ac2010-05-07 17:11:44 -040031
Nicholas Piggin05a4a952017-07-12 14:35:46 -070032/* Watchdog configuration */
Peter Zijlstraab992dc2015-05-18 11:31:50 +020033static DEFINE_MUTEX(watchdog_proc_mutex);
34
Nicholas Piggin05a4a952017-07-12 14:35:46 -070035int __read_mostly nmi_watchdog_enabled;
36
37#if defined(CONFIG_HARDLOCKUP_DETECTOR) || defined(CONFIG_HAVE_NMI_WATCHDOG)
38unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED |
39 NMI_WATCHDOG_ENABLED;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070040#else
Babu Moger249e52e2016-12-14 15:06:21 -080041unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070042#endif
Nicholas Piggin05a4a952017-07-12 14:35:46 -070043
44#ifdef CONFIG_HARDLOCKUP_DETECTOR
45/* boot commands */
46/*
47 * Should we panic when a soft-lockup or hard-lockup occurs:
48 */
49unsigned int __read_mostly hardlockup_panic =
50 CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE;
51/*
52 * We may not want to enable hard lockup detection by default in all cases,
53 * for example when running the kernel as a guest on a hypervisor. In these
54 * cases this function can be called to disable hard lockup detection. This
55 * function should only be executed once by the boot processor before the
56 * kernel command line parameters are parsed, because otherwise it is not
57 * possible to override this in hardlockup_panic_setup().
58 */
59void hardlockup_detector_disable(void)
60{
61 watchdog_enabled &= ~NMI_WATCHDOG_ENABLED;
62}
63
64static int __init hardlockup_panic_setup(char *str)
65{
66 if (!strncmp(str, "panic", 5))
67 hardlockup_panic = 1;
68 else if (!strncmp(str, "nopanic", 7))
69 hardlockup_panic = 0;
70 else if (!strncmp(str, "0", 1))
71 watchdog_enabled &= ~NMI_WATCHDOG_ENABLED;
72 else if (!strncmp(str, "1", 1))
73 watchdog_enabled |= NMI_WATCHDOG_ENABLED;
74 return 1;
75}
76__setup("nmi_watchdog=", hardlockup_panic_setup);
77
78#endif
79
80#ifdef CONFIG_SOFTLOCKUP_DETECTOR
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070081int __read_mostly soft_watchdog_enabled;
Nicholas Piggin05a4a952017-07-12 14:35:46 -070082#endif
83
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070084int __read_mostly watchdog_user_enabled;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -070085int __read_mostly watchdog_thresh = 10;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070086
Aaron Tomlined235872014-06-23 13:22:05 -070087#ifdef CONFIG_SMP
88int __read_mostly sysctl_softlockup_all_cpu_backtrace;
Jiri Kosina55537872015-11-05 18:44:41 -080089int __read_mostly sysctl_hardlockup_all_cpu_backtrace;
Aaron Tomlined235872014-06-23 13:22:05 -070090#endif
Nicholas Piggin05a4a952017-07-12 14:35:46 -070091struct cpumask watchdog_cpumask __read_mostly;
Chris Metcalffe4ba3c2015-06-24 16:55:45 -070092unsigned long *watchdog_cpumask_bits = cpumask_bits(&watchdog_cpumask);
93
Ulrich Obergfellec6a9062015-09-04 15:45:28 -070094/*
95 * The 'watchdog_running' variable is set to 1 when the watchdog threads
96 * are registered/started and is set to 0 when the watchdog threads are
97 * unregistered/stopped, so it is an indicator whether the threads exist.
98 */
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +020099static int __read_mostly watchdog_running;
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700100/*
101 * If a subsystem has a need to deactivate the watchdog temporarily, it
102 * can use the suspend/resume interface to achieve this. The content of
103 * the 'watchdog_suspended' variable reflects this state. Existing threads
104 * are parked/unparked by the lockup_detector_{suspend|resume} functions
105 * (see comment blocks pertaining to those functions for further details).
106 *
107 * 'watchdog_suspended' also prevents threads from being registered/started
108 * or unregistered/stopped via parameters in /proc/sys/kernel, so the state
109 * of 'watchdog_running' cannot change while the watchdog is deactivated
110 * temporarily (see related code in 'proc' handlers).
111 */
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700112int __read_mostly watchdog_suspended;
113
114/*
115 * These functions can be overridden if an architecture implements its
116 * own hardlockup detector.
117 */
118int __weak watchdog_nmi_enable(unsigned int cpu)
119{
120 return 0;
121}
122void __weak watchdog_nmi_disable(unsigned int cpu)
123{
124}
125
126#ifdef CONFIG_SOFTLOCKUP_DETECTOR
127
128/* Helper for online, unparked cpus. */
129#define for_each_watchdog_cpu(cpu) \
130 for_each_cpu_and((cpu), cpu_online_mask, &watchdog_cpumask)
131
132atomic_t watchdog_park_in_progress = ATOMIC_INIT(0);
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700133
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800134static u64 __read_mostly sample_period;
Don Zickus58687ac2010-05-07 17:11:44 -0400135
136static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
137static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
138static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
139static DEFINE_PER_CPU(bool, softlockup_touch_sync);
Don Zickus58687ac2010-05-07 17:11:44 -0400140static DEFINE_PER_CPU(bool, soft_watchdog_warn);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000141static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
142static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt);
chai wenb1a8de12014-10-09 15:25:17 -0700143static DEFINE_PER_CPU(struct task_struct *, softlockup_task_ptr_saved);
Don Zickus58687ac2010-05-07 17:11:44 -0400144static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
Aaron Tomlined235872014-06-23 13:22:05 -0700145static unsigned long soft_lockup_nmi_warn;
Don Zickus58687ac2010-05-07 17:11:44 -0400146
Don Zickus58687ac2010-05-07 17:11:44 -0400147unsigned int __read_mostly softlockup_panic =
148 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
149
150static int __init softlockup_panic_setup(char *str)
151{
152 softlockup_panic = simple_strtoul(str, NULL, 0);
153
154 return 1;
155}
156__setup("softlockup_panic=", softlockup_panic_setup);
157
158static int __init nowatchdog_setup(char *str)
159{
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700160 watchdog_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -0400161 return 1;
162}
163__setup("nowatchdog", nowatchdog_setup);
164
Don Zickus58687ac2010-05-07 17:11:44 -0400165static int __init nosoftlockup_setup(char *str)
166{
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700167 watchdog_enabled &= ~SOFT_WATCHDOG_ENABLED;
Don Zickus58687ac2010-05-07 17:11:44 -0400168 return 1;
169}
170__setup("nosoftlockup", nosoftlockup_setup);
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700171
Aaron Tomlined235872014-06-23 13:22:05 -0700172#ifdef CONFIG_SMP
173static int __init softlockup_all_cpu_backtrace_setup(char *str)
174{
175 sysctl_softlockup_all_cpu_backtrace =
176 !!simple_strtol(str, NULL, 0);
177 return 1;
178}
179__setup("softlockup_all_cpu_backtrace=", softlockup_all_cpu_backtrace_setup);
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700180#ifdef CONFIG_HARDLOCKUP_DETECTOR
Jiri Kosina55537872015-11-05 18:44:41 -0800181static int __init hardlockup_all_cpu_backtrace_setup(char *str)
182{
183 sysctl_hardlockup_all_cpu_backtrace =
184 !!simple_strtol(str, NULL, 0);
185 return 1;
186}
187__setup("hardlockup_all_cpu_backtrace=", hardlockup_all_cpu_backtrace_setup);
Aaron Tomlined235872014-06-23 13:22:05 -0700188#endif
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700189#endif
Don Zickus58687ac2010-05-07 17:11:44 -0400190
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700191/*
192 * Hard-lockup warnings should be triggered after just a few seconds. Soft-
193 * lockups can have false positives under extreme conditions. So we generally
194 * want a higher threshold for soft lockups than for hard lockups. So we couple
195 * the thresholds with a factor: we make the soft threshold twice the amount of
196 * time the hard threshold is.
197 */
Ingo Molnar6e9101a2011-05-24 05:43:18 +0200198static int get_softlockup_thresh(void)
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700199{
200 return watchdog_thresh * 2;
201}
Don Zickus58687ac2010-05-07 17:11:44 -0400202
203/*
204 * Returns seconds, approximately. We don't need nanosecond
205 * resolution, and we don't need to waste time with a big divide when
206 * 2^30ns == 1.074s.
207 */
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900208static unsigned long get_timestamp(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400209{
Cyril Bur545a2bf2015-02-12 15:01:24 -0800210 return running_clock() >> 30LL; /* 2^30 ~= 10^9 */
Don Zickus58687ac2010-05-07 17:11:44 -0400211}
212
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800213static void set_sample_period(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400214{
215 /*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700216 * convert watchdog_thresh from seconds to ns
Fernando Luis Vázquez Cao86f5e6a2012-02-09 17:42:22 -0500217 * the divide by 5 is to give hrtimer several chances (two
218 * or three with the current relation between the soft
219 * and hard thresholds) to increment before the
220 * hardlockup detector generates a warning
Don Zickus58687ac2010-05-07 17:11:44 -0400221 */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800222 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
Don Zickus58687ac2010-05-07 17:11:44 -0400223}
224
225/* Commands for resetting the watchdog */
226static void __touch_watchdog(void)
227{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900228 __this_cpu_write(watchdog_touch_ts, get_timestamp());
Don Zickus58687ac2010-05-07 17:11:44 -0400229}
230
Tejun Heo03e0d462015-12-08 11:28:04 -0500231/**
232 * touch_softlockup_watchdog_sched - touch watchdog on scheduler stalls
233 *
234 * Call when the scheduler may have stalled for legitimate reasons
235 * preventing the watchdog task from executing - e.g. the scheduler
236 * entering idle state. This should only be used for scheduler events.
237 * Use touch_softlockup_watchdog() for everything else.
238 */
239void touch_softlockup_watchdog_sched(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400240{
Andrew Morton78611442014-04-18 15:07:12 -0700241 /*
242 * Preemption can be enabled. It doesn't matter which CPU's timestamp
243 * gets zeroed here, so use the raw_ operation.
244 */
245 raw_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400246}
Tejun Heo03e0d462015-12-08 11:28:04 -0500247
248void touch_softlockup_watchdog(void)
249{
250 touch_softlockup_watchdog_sched();
Tejun Heo82607adc2015-12-08 11:28:04 -0500251 wq_watchdog_touch(raw_smp_processor_id());
Tejun Heo03e0d462015-12-08 11:28:04 -0500252}
Ingo Molnar0167c782010-05-13 08:53:33 +0200253EXPORT_SYMBOL(touch_softlockup_watchdog);
Don Zickus58687ac2010-05-07 17:11:44 -0400254
Don Zickus332fbdb2010-05-07 17:11:45 -0400255void touch_all_softlockup_watchdogs(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400256{
257 int cpu;
258
259 /*
260 * this is done lockless
261 * do we care if a 0 races with a timestamp?
262 * all it means is the softlock check starts one cycle later
263 */
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700264 for_each_watchdog_cpu(cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400265 per_cpu(watchdog_touch_ts, cpu) = 0;
Tejun Heo82607adc2015-12-08 11:28:04 -0500266 wq_watchdog_touch(-1);
Don Zickus58687ac2010-05-07 17:11:44 -0400267}
268
Don Zickus58687ac2010-05-07 17:11:44 -0400269void touch_softlockup_watchdog_sync(void)
270{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500271 __this_cpu_write(softlockup_touch_sync, true);
272 __this_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400273}
274
Don Zickus26e09c62010-05-17 18:06:04 -0400275static int is_softlockup(unsigned long touch_ts)
Don Zickus58687ac2010-05-07 17:11:44 -0400276{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900277 unsigned long now = get_timestamp();
Don Zickus58687ac2010-05-07 17:11:44 -0400278
Ulrich Obergfell39d2da22015-11-05 18:44:56 -0800279 if ((watchdog_enabled & SOFT_WATCHDOG_ENABLED) && watchdog_thresh){
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700280 /* Warn about unreasonable delays. */
281 if (time_after(now, touch_ts + get_softlockup_thresh()))
282 return now - touch_ts;
283 }
Don Zickus58687ac2010-05-07 17:11:44 -0400284 return 0;
285}
286
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700287/* watchdog detector functions */
288bool is_hardlockup(void)
289{
290 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
291
292 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
293 return true;
294
295 __this_cpu_write(hrtimer_interrupts_saved, hrint);
296 return false;
297}
298
Don Zickus58687ac2010-05-07 17:11:44 -0400299static void watchdog_interrupt_count(void)
300{
Christoph Lameter909ea962010-12-08 16:22:55 +0100301 __this_cpu_inc(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400302}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000303
Ulrich Obergfell58cf6902015-11-05 18:44:30 -0800304static int watchdog_enable_all_cpus(void);
305static void watchdog_disable_all_cpus(void);
306
Don Zickus58687ac2010-05-07 17:11:44 -0400307/* watchdog kicker functions */
308static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
309{
Christoph Lameter909ea962010-12-08 16:22:55 +0100310 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400311 struct pt_regs *regs = get_irq_regs();
312 int duration;
Aaron Tomlined235872014-06-23 13:22:05 -0700313 int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace;
Don Zickus58687ac2010-05-07 17:11:44 -0400314
Don Zickusb94f5112017-01-24 15:17:53 -0800315 if (atomic_read(&watchdog_park_in_progress) != 0)
316 return HRTIMER_NORESTART;
317
Don Zickus58687ac2010-05-07 17:11:44 -0400318 /* kick the hardlockup detector */
319 watchdog_interrupt_count();
320
321 /* kick the softlockup detector */
Christoph Lameter909ea962010-12-08 16:22:55 +0100322 wake_up_process(__this_cpu_read(softlockup_watchdog));
Don Zickus58687ac2010-05-07 17:11:44 -0400323
324 /* .. and repeat */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800325 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
Don Zickus58687ac2010-05-07 17:11:44 -0400326
327 if (touch_ts == 0) {
Christoph Lameter909ea962010-12-08 16:22:55 +0100328 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
Don Zickus58687ac2010-05-07 17:11:44 -0400329 /*
330 * If the time stamp was touched atomically
331 * make sure the scheduler tick is up to date.
332 */
Christoph Lameter909ea962010-12-08 16:22:55 +0100333 __this_cpu_write(softlockup_touch_sync, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400334 sched_clock_tick();
335 }
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500336
337 /* Clear the guest paused flag on watchdog reset */
338 kvm_check_and_clear_guest_paused();
Don Zickus58687ac2010-05-07 17:11:44 -0400339 __touch_watchdog();
340 return HRTIMER_RESTART;
341 }
342
343 /* check for a softlockup
344 * This is done by making sure a high priority task is
345 * being scheduled. The task touches the watchdog to
346 * indicate it is getting cpu time. If it hasn't then
347 * this is a good indication some task is hogging the cpu
348 */
Don Zickus26e09c62010-05-17 18:06:04 -0400349 duration = is_softlockup(touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400350 if (unlikely(duration)) {
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500351 /*
352 * If a virtual machine is stopped by the host it can look to
353 * the watchdog like a soft lockup, check to see if the host
354 * stopped the vm before we issue the warning
355 */
356 if (kvm_check_and_clear_guest_paused())
357 return HRTIMER_RESTART;
358
Don Zickus58687ac2010-05-07 17:11:44 -0400359 /* only warn once */
chai wenb1a8de12014-10-09 15:25:17 -0700360 if (__this_cpu_read(soft_watchdog_warn) == true) {
361 /*
362 * When multiple processes are causing softlockups the
363 * softlockup detector only warns on the first one
364 * because the code relies on a full quiet cycle to
365 * re-arm. The second process prevents the quiet cycle
366 * and never gets reported. Use task pointers to detect
367 * this.
368 */
369 if (__this_cpu_read(softlockup_task_ptr_saved) !=
370 current) {
371 __this_cpu_write(soft_watchdog_warn, false);
372 __touch_watchdog();
373 }
Don Zickus58687ac2010-05-07 17:11:44 -0400374 return HRTIMER_RESTART;
chai wenb1a8de12014-10-09 15:25:17 -0700375 }
Don Zickus58687ac2010-05-07 17:11:44 -0400376
Aaron Tomlined235872014-06-23 13:22:05 -0700377 if (softlockup_all_cpu_backtrace) {
378 /* Prevent multiple soft-lockup reports if one cpu is already
379 * engaged in dumping cpu back traces
380 */
381 if (test_and_set_bit(0, &soft_lockup_nmi_warn)) {
382 /* Someone else will report us. Let's give up */
383 __this_cpu_write(soft_watchdog_warn, true);
384 return HRTIMER_RESTART;
385 }
386 }
387
Fabian Frederick656c3b72014-08-06 16:04:03 -0700388 pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
Don Zickus26e09c62010-05-17 18:06:04 -0400389 smp_processor_id(), duration,
Don Zickus58687ac2010-05-07 17:11:44 -0400390 current->comm, task_pid_nr(current));
chai wenb1a8de12014-10-09 15:25:17 -0700391 __this_cpu_write(softlockup_task_ptr_saved, current);
Don Zickus58687ac2010-05-07 17:11:44 -0400392 print_modules();
393 print_irqtrace_events(current);
394 if (regs)
395 show_regs(regs);
396 else
397 dump_stack();
398
Aaron Tomlined235872014-06-23 13:22:05 -0700399 if (softlockup_all_cpu_backtrace) {
400 /* Avoid generating two back traces for current
401 * given that one is already made above
402 */
403 trigger_allbutself_cpu_backtrace();
404
405 clear_bit(0, &soft_lockup_nmi_warn);
406 /* Barrier to sync with other cpus */
407 smp_mb__after_atomic();
408 }
409
Josh Hunt69361ee2014-08-08 14:22:31 -0700410 add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK);
Don Zickus58687ac2010-05-07 17:11:44 -0400411 if (softlockup_panic)
412 panic("softlockup: hung tasks");
Christoph Lameter909ea962010-12-08 16:22:55 +0100413 __this_cpu_write(soft_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400414 } else
Christoph Lameter909ea962010-12-08 16:22:55 +0100415 __this_cpu_write(soft_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400416
417 return HRTIMER_RESTART;
418}
419
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000420static void watchdog_set_prio(unsigned int policy, unsigned int prio)
Don Zickus58687ac2010-05-07 17:11:44 -0400421{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000422 struct sched_param param = { .sched_priority = prio };
423
424 sched_setscheduler(current, policy, &param);
425}
426
427static void watchdog_enable(unsigned int cpu)
428{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500429 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Don Zickus58687ac2010-05-07 17:11:44 -0400430
Bjørn Mork3935e8952012-12-19 20:51:31 +0100431 /* kick off the timer for the hardlockup detector */
432 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
433 hrtimer->function = watchdog_timer_fn;
434
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000435 /* Enable the perf event */
436 watchdog_nmi_enable(cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400437
Don Zickus58687ac2010-05-07 17:11:44 -0400438 /* done here because hrtimer_start can only pin to smp_processor_id() */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800439 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
Don Zickus58687ac2010-05-07 17:11:44 -0400440 HRTIMER_MODE_REL_PINNED);
441
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000442 /* initialize timestamp */
443 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
444 __touch_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400445}
446
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000447static void watchdog_disable(unsigned int cpu)
448{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500449 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000450
451 watchdog_set_prio(SCHED_NORMAL, 0);
452 hrtimer_cancel(hrtimer);
453 /* disable the perf event */
454 watchdog_nmi_disable(cpu);
455}
456
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200457static void watchdog_cleanup(unsigned int cpu, bool online)
458{
459 watchdog_disable(cpu);
460}
461
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000462static int watchdog_should_run(unsigned int cpu)
463{
464 return __this_cpu_read(hrtimer_interrupts) !=
465 __this_cpu_read(soft_lockup_hrtimer_cnt);
466}
467
468/*
469 * The watchdog thread function - touches the timestamp.
470 *
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800471 * It only runs once every sample_period seconds (4 seconds by
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000472 * default) to reset the softlockup timestamp. If this gets delayed
473 * for more than 2*watchdog_thresh seconds then the debug-printout
474 * triggers in watchdog_timer_fn().
475 */
476static void watchdog(unsigned int cpu)
477{
478 __this_cpu_write(soft_lockup_hrtimer_cnt,
479 __this_cpu_read(hrtimer_interrupts));
480 __touch_watchdog();
Ulrich Obergfellbcfba4f2015-04-14 15:44:10 -0700481
482 /*
483 * watchdog_nmi_enable() clears the NMI_WATCHDOG_ENABLED bit in the
484 * failure path. Check for failures that can occur asynchronously -
485 * for example, when CPUs are on-lined - and shut down the hardware
486 * perf event on each CPU accordingly.
487 *
488 * The only non-obvious place this bit can be cleared is through
489 * watchdog_nmi_enable(), so a pr_info() is placed there. Placing a
490 * pr_info here would be too noisy as it would result in a message
491 * every few seconds if the hardlockup was disabled but the softlockup
492 * enabled.
493 */
494 if (!(watchdog_enabled & NMI_WATCHDOG_ENABLED))
495 watchdog_nmi_disable(cpu);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000496}
Don Zickus58687ac2010-05-07 17:11:44 -0400497
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200498static struct smp_hotplug_thread watchdog_threads = {
499 .store = &softlockup_watchdog,
500 .thread_should_run = watchdog_should_run,
501 .thread_fn = watchdog,
502 .thread_comm = "watchdog/%u",
503 .setup = watchdog_enable,
504 .cleanup = watchdog_cleanup,
505 .park = watchdog_disable,
506 .unpark = watchdog_enable,
507};
508
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700509/*
510 * park all watchdog threads that are specified in 'watchdog_cpumask'
Ulrich Obergfellee7fed52015-11-05 18:44:39 -0800511 *
512 * This function returns an error if kthread_park() of a watchdog thread
513 * fails. In this situation, the watchdog threads of some CPUs can already
514 * be parked and the watchdog threads of other CPUs can still be runnable.
515 * Callers are expected to handle this special condition as appropriate in
516 * their context.
Ulrich Obergfella2a45b82015-11-05 18:44:53 -0800517 *
518 * This function may only be called in a context that is protected against
519 * races with CPU hotplug - for example, via get_online_cpus().
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700520 */
521static int watchdog_park_threads(void)
522{
523 int cpu, ret = 0;
524
Don Zickusb94f5112017-01-24 15:17:53 -0800525 atomic_set(&watchdog_park_in_progress, 1);
526
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700527 for_each_watchdog_cpu(cpu) {
528 ret = kthread_park(per_cpu(softlockup_watchdog, cpu));
529 if (ret)
530 break;
531 }
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700532
Don Zickusb94f5112017-01-24 15:17:53 -0800533 atomic_set(&watchdog_park_in_progress, 0);
534
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700535 return ret;
536}
537
538/*
539 * unpark all watchdog threads that are specified in 'watchdog_cpumask'
Ulrich Obergfella2a45b82015-11-05 18:44:53 -0800540 *
541 * This function may only be called in a context that is protected against
542 * races with CPU hotplug - for example, via get_online_cpus().
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700543 */
544static void watchdog_unpark_threads(void)
545{
546 int cpu;
547
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700548 for_each_watchdog_cpu(cpu)
549 kthread_unpark(per_cpu(softlockup_watchdog, cpu));
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700550}
551
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800552static int update_watchdog_all_cpus(void)
Michal Hocko9809b182013-09-24 15:27:30 -0700553{
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800554 int ret;
555
556 ret = watchdog_park_threads();
557 if (ret)
558 return ret;
559
Ulrich Obergfelld4bdd0b212015-09-04 15:45:21 -0700560 watchdog_unpark_threads();
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800561
562 return 0;
Michal Hocko9809b182013-09-24 15:27:30 -0700563}
564
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700565static int watchdog_enable_all_cpus(void)
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200566{
567 int err = 0;
568
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200569 if (!watchdog_running) {
Frederic Weisbecker230ec932015-09-04 15:45:06 -0700570 err = smpboot_register_percpu_thread_cpumask(&watchdog_threads,
571 &watchdog_cpumask);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200572 if (err)
573 pr_err("Failed to create watchdog threads, disabled\n");
Frederic Weisbecker230ec932015-09-04 15:45:06 -0700574 else
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200575 watchdog_running = 1;
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700576 } else {
577 /*
578 * Enable/disable the lockup detectors or
579 * change the sample period 'on the fly'.
580 */
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800581 err = update_watchdog_all_cpus();
582
583 if (err) {
584 watchdog_disable_all_cpus();
585 pr_err("Failed to update lockup detectors, disabled\n");
586 }
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200587 }
588
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800589 if (err)
590 watchdog_enabled = 0;
591
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200592 return err;
593}
594
Don Zickus58687ac2010-05-07 17:11:44 -0400595static void watchdog_disable_all_cpus(void)
596{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200597 if (watchdog_running) {
598 watchdog_running = 0;
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200599 smpboot_unregister_percpu_thread(&watchdog_threads);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000600 }
Don Zickus58687ac2010-05-07 17:11:44 -0400601}
602
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700603#else /* SOFTLOCKUP */
604static int watchdog_park_threads(void)
605{
606 return 0;
607}
608
609static void watchdog_unpark_threads(void)
610{
611}
612
613static int watchdog_enable_all_cpus(void)
614{
615 return 0;
616}
617
618static void watchdog_disable_all_cpus(void)
619{
620}
621
622static void set_sample_period(void)
623{
624}
625#endif /* SOFTLOCKUP */
626
627/*
628 * Suspend the hard and soft lockup detector by parking the watchdog threads.
629 */
630int lockup_detector_suspend(void)
631{
632 int ret = 0;
633
634 get_online_cpus();
635 mutex_lock(&watchdog_proc_mutex);
636 /*
637 * Multiple suspend requests can be active in parallel (counted by
638 * the 'watchdog_suspended' variable). If the watchdog threads are
639 * running, the first caller takes care that they will be parked.
640 * The state of 'watchdog_running' cannot change while a suspend
641 * request is active (see related code in 'proc' handlers).
642 */
643 if (watchdog_running && !watchdog_suspended)
644 ret = watchdog_park_threads();
645
646 if (ret == 0)
647 watchdog_suspended++;
648 else {
649 watchdog_disable_all_cpus();
650 pr_err("Failed to suspend lockup detectors, disabled\n");
651 watchdog_enabled = 0;
652 }
653
654 mutex_unlock(&watchdog_proc_mutex);
655
656 return ret;
657}
658
659/*
660 * Resume the hard and soft lockup detector by unparking the watchdog threads.
661 */
662void lockup_detector_resume(void)
663{
664 mutex_lock(&watchdog_proc_mutex);
665
666 watchdog_suspended--;
667 /*
668 * The watchdog threads are unparked if they were previously running
669 * and if there is no more active suspend request.
670 */
671 if (watchdog_running && !watchdog_suspended)
672 watchdog_unpark_threads();
673
674 mutex_unlock(&watchdog_proc_mutex);
675 put_online_cpus();
676}
677
Ulrich Obergfell58cf6902015-11-05 18:44:30 -0800678#ifdef CONFIG_SYSCTL
679
Don Zickus58687ac2010-05-07 17:11:44 -0400680/*
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700681 * Update the run state of the lockup detectors.
Don Zickus58687ac2010-05-07 17:11:44 -0400682 */
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700683static int proc_watchdog_update(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400684{
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700685 int err = 0;
686
687 /*
688 * Watchdog threads won't be started if they are already active.
689 * The 'watchdog_running' variable in watchdog_*_all_cpus() takes
690 * care of this. If those threads are already active, the sample
691 * period will be updated and the lockup detectors will be enabled
692 * or disabled 'on the fly'.
693 */
694 if (watchdog_enabled && watchdog_thresh)
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700695 err = watchdog_enable_all_cpus();
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700696 else
697 watchdog_disable_all_cpus();
698
699 return err;
700
701}
702
703/*
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700704 * common function for watchdog, nmi_watchdog and soft_watchdog parameter
705 *
706 * caller | table->data points to | 'which' contains the flag(s)
707 * -------------------|-----------------------|-----------------------------
708 * proc_watchdog | watchdog_user_enabled | NMI_WATCHDOG_ENABLED or'ed
709 * | | with SOFT_WATCHDOG_ENABLED
710 * -------------------|-----------------------|-----------------------------
711 * proc_nmi_watchdog | nmi_watchdog_enabled | NMI_WATCHDOG_ENABLED
712 * -------------------|-----------------------|-----------------------------
713 * proc_soft_watchdog | soft_watchdog_enabled | SOFT_WATCHDOG_ENABLED
714 */
715static int proc_watchdog_common(int which, struct ctl_table *table, int write,
716 void __user *buffer, size_t *lenp, loff_t *ppos)
717{
718 int err, old, new;
719 int *watchdog_param = (int *)table->data;
Don Zickus58687ac2010-05-07 17:11:44 -0400720
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800721 get_online_cpus();
Michal Hocko359e6fa2013-09-24 15:27:29 -0700722 mutex_lock(&watchdog_proc_mutex);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000723
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700724 if (watchdog_suspended) {
725 /* no parameter changes allowed while watchdog is suspended */
726 err = -EAGAIN;
727 goto out;
728 }
729
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700730 /*
731 * If the parameter is being read return the state of the corresponding
732 * bit(s) in 'watchdog_enabled', else update 'watchdog_enabled' and the
733 * run state of the lockup detectors.
734 */
735 if (!write) {
736 *watchdog_param = (watchdog_enabled & which) != 0;
737 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
738 } else {
739 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
740 if (err)
741 goto out;
742
743 /*
744 * There is a race window between fetching the current value
745 * from 'watchdog_enabled' and storing the new value. During
746 * this race window, watchdog_nmi_enable() can sneak in and
747 * clear the NMI_WATCHDOG_ENABLED bit in 'watchdog_enabled'.
748 * The 'cmpxchg' detects this race and the loop retries.
749 */
750 do {
751 old = watchdog_enabled;
752 /*
753 * If the parameter value is not zero set the
754 * corresponding bit(s), else clear it(them).
755 */
756 if (*watchdog_param)
757 new = old | which;
758 else
759 new = old & ~which;
760 } while (cmpxchg(&watchdog_enabled, old, new) != old);
761
762 /*
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800763 * Update the run state of the lockup detectors. There is _no_
764 * need to check the value returned by proc_watchdog_update()
765 * and to restore the previous value of 'watchdog_enabled' as
766 * both lockup detectors are disabled if proc_watchdog_update()
767 * returns an error.
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700768 */
Joshua Hunta1ee1932016-03-17 14:17:23 -0700769 if (old == new)
770 goto out;
771
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700772 err = proc_watchdog_update();
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700773 }
774out:
775 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800776 put_online_cpus();
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700777 return err;
778}
779
780/*
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700781 * /proc/sys/kernel/watchdog
782 */
783int proc_watchdog(struct ctl_table *table, int write,
784 void __user *buffer, size_t *lenp, loff_t *ppos)
785{
786 return proc_watchdog_common(NMI_WATCHDOG_ENABLED|SOFT_WATCHDOG_ENABLED,
787 table, write, buffer, lenp, ppos);
788}
789
790/*
791 * /proc/sys/kernel/nmi_watchdog
792 */
793int proc_nmi_watchdog(struct ctl_table *table, int write,
794 void __user *buffer, size_t *lenp, loff_t *ppos)
795{
796 return proc_watchdog_common(NMI_WATCHDOG_ENABLED,
797 table, write, buffer, lenp, ppos);
798}
799
800/*
801 * /proc/sys/kernel/soft_watchdog
802 */
803int proc_soft_watchdog(struct ctl_table *table, int write,
804 void __user *buffer, size_t *lenp, loff_t *ppos)
805{
806 return proc_watchdog_common(SOFT_WATCHDOG_ENABLED,
807 table, write, buffer, lenp, ppos);
808}
809
810/*
811 * /proc/sys/kernel/watchdog_thresh
812 */
813int proc_watchdog_thresh(struct ctl_table *table, int write,
814 void __user *buffer, size_t *lenp, loff_t *ppos)
815{
Joshua Hunta1ee1932016-03-17 14:17:23 -0700816 int err, old, new;
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700817
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800818 get_online_cpus();
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700819 mutex_lock(&watchdog_proc_mutex);
820
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700821 if (watchdog_suspended) {
822 /* no parameter changes allowed while watchdog is suspended */
823 err = -EAGAIN;
824 goto out;
825 }
826
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700827 old = ACCESS_ONCE(watchdog_thresh);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200828 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700829
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200830 if (err || !write)
Michal Hocko359e6fa2013-09-24 15:27:29 -0700831 goto out;
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700832
anish kumarb66a23562013-03-12 14:44:08 -0400833 /*
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800834 * Update the sample period. Restore on failure.
anish kumarb66a23562013-03-12 14:44:08 -0400835 */
Joshua Hunta1ee1932016-03-17 14:17:23 -0700836 new = ACCESS_ONCE(watchdog_thresh);
837 if (old == new)
838 goto out;
839
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700840 set_sample_period();
841 err = proc_watchdog_update();
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800842 if (err) {
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700843 watchdog_thresh = old;
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800844 set_sample_period();
845 }
Michal Hocko359e6fa2013-09-24 15:27:29 -0700846out:
847 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800848 put_online_cpus();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200849 return err;
Don Zickus58687ac2010-05-07 17:11:44 -0400850}
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700851
852/*
853 * The cpumask is the mask of possible cpus that the watchdog can run
854 * on, not the mask of cpus it is actually running on. This allows the
855 * user to specify a mask that will include cpus that have not yet
856 * been brought online, if desired.
857 */
858int proc_watchdog_cpumask(struct ctl_table *table, int write,
859 void __user *buffer, size_t *lenp, loff_t *ppos)
860{
861 int err;
862
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800863 get_online_cpus();
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700864 mutex_lock(&watchdog_proc_mutex);
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700865
866 if (watchdog_suspended) {
867 /* no parameter changes allowed while watchdog is suspended */
868 err = -EAGAIN;
869 goto out;
870 }
871
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700872 err = proc_do_large_bitmap(table, write, buffer, lenp, ppos);
873 if (!err && write) {
874 /* Remove impossible cpus to keep sysctl output cleaner. */
875 cpumask_and(&watchdog_cpumask, &watchdog_cpumask,
876 cpu_possible_mask);
877
878 if (watchdog_running) {
879 /*
880 * Failure would be due to being unable to allocate
881 * a temporary cpumask, so we are likely not in a
882 * position to do much else to make things better.
883 */
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700884#ifdef CONFIG_SOFTLOCKUP_DETECTOR
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700885 if (smpboot_update_cpumask_percpu_thread(
886 &watchdog_threads, &watchdog_cpumask) != 0)
887 pr_err("cpumask update failed\n");
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700888#endif
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700889 }
890 }
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700891out:
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700892 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800893 put_online_cpus();
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700894 return err;
895}
896
Don Zickus58687ac2010-05-07 17:11:44 -0400897#endif /* CONFIG_SYSCTL */
898
Peter Zijlstra004417a2010-11-25 18:38:29 +0100899void __init lockup_detector_init(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400900{
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800901 set_sample_period();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200902
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700903#ifdef CONFIG_NO_HZ_FULL
904 if (tick_nohz_full_enabled()) {
Frederic Weisbecker314b08ff2015-09-04 15:45:09 -0700905 pr_info("Disabling watchdog on nohz_full cores by default\n");
906 cpumask_copy(&watchdog_cpumask, housekeeping_mask);
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700907 } else
908 cpumask_copy(&watchdog_cpumask, cpu_possible_mask);
909#else
910 cpumask_copy(&watchdog_cpumask, cpu_possible_mask);
911#endif
912
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700913 if (watchdog_enabled)
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700914 watchdog_enable_all_cpus();
Don Zickus58687ac2010-05-07 17:11:44 -0400915}