blob: cfbf0274a53083eaff995207570a0d552b5a90c1 [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>
Olav Haugand8354e62016-08-18 16:49:44 -070016#include <linux/device.h>
Don Zickus58687ac2010-05-07 17:11:44 -040017#include <linux/nmi.h>
18#include <linux/init.h>
Don Zickus58687ac2010-05-07 17:11:44 -040019#include <linux/module.h>
20#include <linux/sysctl.h>
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000021#include <linux/smpboot.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060022#include <linux/sched/rt.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>
Don Zickus58687ac2010-05-07 17:11:44 -040025
26#include <asm/irq_regs.h>
Eric B Munson5d1c0f42012-03-10 14:37:28 -050027#include <linux/kvm_para.h>
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -070028#include <linux/kthread.h>
Prasad Sodagudi309fb622017-03-01 15:03:05 -080029#include <soc/qcom/watchdog.h>
Don Zickus58687ac2010-05-07 17:11:44 -040030
Peter Zijlstraab992dc2015-05-18 11:31:50 +020031static DEFINE_MUTEX(watchdog_proc_mutex);
32
Babu Moger0ce66ee2016-12-14 15:06:21 -080033#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
34unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED|NMI_WATCHDOG_ENABLED;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070035#else
Babu Moger0ce66ee2016-12-14 15:06:21 -080036unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070037#endif
38int __read_mostly nmi_watchdog_enabled;
39int __read_mostly soft_watchdog_enabled;
40int __read_mostly watchdog_user_enabled;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -070041int __read_mostly watchdog_thresh = 10;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070042
Aaron Tomlined235872014-06-23 13:22:05 -070043#ifdef CONFIG_SMP
44int __read_mostly sysctl_softlockup_all_cpu_backtrace;
Jiri Kosina55537872015-11-05 18:44:41 -080045int __read_mostly sysctl_hardlockup_all_cpu_backtrace;
Aaron Tomlined235872014-06-23 13:22:05 -070046#endif
Chris Metcalffe4ba3c2015-06-24 16:55:45 -070047static struct cpumask watchdog_cpumask __read_mostly;
48unsigned long *watchdog_cpumask_bits = cpumask_bits(&watchdog_cpumask);
49
50/* Helper for online, unparked cpus. */
51#define for_each_watchdog_cpu(cpu) \
52 for_each_cpu_and((cpu), cpu_online_mask, &watchdog_cpumask)
Aaron Tomlined235872014-06-23 13:22:05 -070053
Don Zickusb13b3b72017-01-24 15:17:53 -080054atomic_t watchdog_park_in_progress = ATOMIC_INIT(0);
55
Ulrich Obergfellec6a9062015-09-04 15:45:28 -070056/*
57 * The 'watchdog_running' variable is set to 1 when the watchdog threads
58 * are registered/started and is set to 0 when the watchdog threads are
59 * unregistered/stopped, so it is an indicator whether the threads exist.
60 */
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +020061static int __read_mostly watchdog_running;
Ulrich Obergfellec6a9062015-09-04 15:45:28 -070062/*
63 * If a subsystem has a need to deactivate the watchdog temporarily, it
64 * can use the suspend/resume interface to achieve this. The content of
65 * the 'watchdog_suspended' variable reflects this state. Existing threads
66 * are parked/unparked by the lockup_detector_{suspend|resume} functions
67 * (see comment blocks pertaining to those functions for further details).
68 *
69 * 'watchdog_suspended' also prevents threads from being registered/started
70 * or unregistered/stopped via parameters in /proc/sys/kernel, so the state
71 * of 'watchdog_running' cannot change while the watchdog is deactivated
72 * temporarily (see related code in 'proc' handlers).
73 */
74static int __read_mostly watchdog_suspended;
75
Chuansheng Liu0f34c402012-12-17 15:59:50 -080076static u64 __read_mostly sample_period;
Don Zickus58687ac2010-05-07 17:11:44 -040077
78static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
79static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
80static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
Olav Haugand8354e62016-08-18 16:49:44 -070081static DEFINE_PER_CPU(unsigned int, watchdog_en);
Don Zickus58687ac2010-05-07 17:11:44 -040082static DEFINE_PER_CPU(bool, softlockup_touch_sync);
Don Zickus58687ac2010-05-07 17:11:44 -040083static DEFINE_PER_CPU(bool, soft_watchdog_warn);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000084static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt);
chai wenb1a8de12014-10-09 15:25:17 -070085static DEFINE_PER_CPU(struct task_struct *, softlockup_task_ptr_saved);
Kyle Yanbd448742017-08-21 15:10:31 -070086DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
87DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
Aaron Tomlined235872014-06-23 13:22:05 -070088static unsigned long soft_lockup_nmi_warn;
Don Zickus58687ac2010-05-07 17:11:44 -040089
Don Zickus58687ac2010-05-07 17:11:44 -040090unsigned int __read_mostly softlockup_panic =
91 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
92
93static int __init softlockup_panic_setup(char *str)
94{
95 softlockup_panic = simple_strtoul(str, NULL, 0);
96
97 return 1;
98}
99__setup("softlockup_panic=", softlockup_panic_setup);
100
101static int __init nowatchdog_setup(char *str)
102{
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700103 watchdog_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -0400104 return 1;
105}
106__setup("nowatchdog", nowatchdog_setup);
107
Don Zickus58687ac2010-05-07 17:11:44 -0400108static int __init nosoftlockup_setup(char *str)
109{
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700110 watchdog_enabled &= ~SOFT_WATCHDOG_ENABLED;
Don Zickus58687ac2010-05-07 17:11:44 -0400111 return 1;
112}
113__setup("nosoftlockup", nosoftlockup_setup);
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700114
Aaron Tomlined235872014-06-23 13:22:05 -0700115#ifdef CONFIG_SMP
116static int __init softlockup_all_cpu_backtrace_setup(char *str)
117{
118 sysctl_softlockup_all_cpu_backtrace =
119 !!simple_strtol(str, NULL, 0);
120 return 1;
121}
122__setup("softlockup_all_cpu_backtrace=", softlockup_all_cpu_backtrace_setup);
Jiri Kosina55537872015-11-05 18:44:41 -0800123static int __init hardlockup_all_cpu_backtrace_setup(char *str)
124{
125 sysctl_hardlockup_all_cpu_backtrace =
126 !!simple_strtol(str, NULL, 0);
127 return 1;
128}
129__setup("hardlockup_all_cpu_backtrace=", hardlockup_all_cpu_backtrace_setup);
Aaron Tomlined235872014-06-23 13:22:05 -0700130#endif
Don Zickus58687ac2010-05-07 17:11:44 -0400131
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700132/*
133 * Hard-lockup warnings should be triggered after just a few seconds. Soft-
134 * lockups can have false positives under extreme conditions. So we generally
135 * want a higher threshold for soft lockups than for hard lockups. So we couple
136 * the thresholds with a factor: we make the soft threshold twice the amount of
137 * time the hard threshold is.
138 */
Ingo Molnar6e9101a2011-05-24 05:43:18 +0200139static int get_softlockup_thresh(void)
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700140{
141 return watchdog_thresh * 2;
142}
Don Zickus58687ac2010-05-07 17:11:44 -0400143
144/*
145 * Returns seconds, approximately. We don't need nanosecond
146 * resolution, and we don't need to waste time with a big divide when
147 * 2^30ns == 1.074s.
148 */
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900149static unsigned long get_timestamp(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400150{
Cyril Bur545a2bf2015-02-12 15:01:24 -0800151 return running_clock() >> 30LL; /* 2^30 ~= 10^9 */
Don Zickus58687ac2010-05-07 17:11:44 -0400152}
153
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800154static void set_sample_period(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400155{
156 /*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700157 * convert watchdog_thresh from seconds to ns
Fernando Luis Vázquez Cao86f5e6a2012-02-09 17:42:22 -0500158 * the divide by 5 is to give hrtimer several chances (two
159 * or three with the current relation between the soft
160 * and hard thresholds) to increment before the
161 * hardlockup detector generates a warning
Don Zickus58687ac2010-05-07 17:11:44 -0400162 */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800163 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
Don Zickus58687ac2010-05-07 17:11:44 -0400164}
165
166/* Commands for resetting the watchdog */
167static void __touch_watchdog(void)
168{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900169 __this_cpu_write(watchdog_touch_ts, get_timestamp());
Don Zickus58687ac2010-05-07 17:11:44 -0400170}
171
Tejun Heo03e0d462015-12-08 11:28:04 -0500172/**
173 * touch_softlockup_watchdog_sched - touch watchdog on scheduler stalls
174 *
175 * Call when the scheduler may have stalled for legitimate reasons
176 * preventing the watchdog task from executing - e.g. the scheduler
177 * entering idle state. This should only be used for scheduler events.
178 * Use touch_softlockup_watchdog() for everything else.
179 */
180void touch_softlockup_watchdog_sched(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400181{
Andrew Morton78611442014-04-18 15:07:12 -0700182 /*
183 * Preemption can be enabled. It doesn't matter which CPU's timestamp
184 * gets zeroed here, so use the raw_ operation.
185 */
186 raw_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400187}
Tejun Heo03e0d462015-12-08 11:28:04 -0500188
189void touch_softlockup_watchdog(void)
190{
191 touch_softlockup_watchdog_sched();
Tejun Heo82607adc2015-12-08 11:28:04 -0500192 wq_watchdog_touch(raw_smp_processor_id());
Tejun Heo03e0d462015-12-08 11:28:04 -0500193}
Ingo Molnar0167c782010-05-13 08:53:33 +0200194EXPORT_SYMBOL(touch_softlockup_watchdog);
Don Zickus58687ac2010-05-07 17:11:44 -0400195
Don Zickus332fbdb2010-05-07 17:11:45 -0400196void touch_all_softlockup_watchdogs(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400197{
198 int cpu;
199
200 /*
201 * this is done lockless
202 * do we care if a 0 races with a timestamp?
203 * all it means is the softlock check starts one cycle later
204 */
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700205 for_each_watchdog_cpu(cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400206 per_cpu(watchdog_touch_ts, cpu) = 0;
Tejun Heo82607adc2015-12-08 11:28:04 -0500207 wq_watchdog_touch(-1);
Don Zickus58687ac2010-05-07 17:11:44 -0400208}
209
Don Zickus58687ac2010-05-07 17:11:44 -0400210void touch_softlockup_watchdog_sync(void)
211{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500212 __this_cpu_write(softlockup_touch_sync, true);
213 __this_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400214}
215
Don Zickus58687ac2010-05-07 17:11:44 -0400216/* watchdog detector functions */
Babu Moger0ce66ee2016-12-14 15:06:21 -0800217bool is_hardlockup(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400218{
Christoph Lameter909ea962010-12-08 16:22:55 +0100219 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400220
Christoph Lameter909ea962010-12-08 16:22:55 +0100221 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
Yaowei Bai451637e2015-11-05 18:44:24 -0800222 return true;
Don Zickus58687ac2010-05-07 17:11:44 -0400223
Christoph Lameter909ea962010-12-08 16:22:55 +0100224 __this_cpu_write(hrtimer_interrupts_saved, hrint);
Yaowei Bai451637e2015-11-05 18:44:24 -0800225 return false;
Don Zickus58687ac2010-05-07 17:11:44 -0400226}
Colin Crossb9180a42013-01-11 13:51:48 -0800227
Don Zickus26e09c62010-05-17 18:06:04 -0400228static int is_softlockup(unsigned long touch_ts)
Don Zickus58687ac2010-05-07 17:11:44 -0400229{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900230 unsigned long now = get_timestamp();
Don Zickus58687ac2010-05-07 17:11:44 -0400231
Ulrich Obergfell39d2da22015-11-05 18:44:56 -0800232 if ((watchdog_enabled & SOFT_WATCHDOG_ENABLED) && watchdog_thresh){
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700233 /* Warn about unreasonable delays. */
234 if (time_after(now, touch_ts + get_softlockup_thresh()))
235 return now - touch_ts;
236 }
Don Zickus58687ac2010-05-07 17:11:44 -0400237 return 0;
238}
239
Don Zickus58687ac2010-05-07 17:11:44 -0400240static void watchdog_interrupt_count(void)
241{
Christoph Lameter909ea962010-12-08 16:22:55 +0100242 __this_cpu_inc(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400243}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000244
Babu Mogerb969a242016-12-14 15:06:24 -0800245/*
246 * These two functions are mostly architecture specific
247 * defining them as weak here.
248 */
249int __weak watchdog_nmi_enable(unsigned int cpu)
250{
251 return 0;
252}
253void __weak watchdog_nmi_disable(unsigned int cpu)
254{
255}
Don Zickus58687ac2010-05-07 17:11:44 -0400256
Kyle Yanbd448742017-08-21 15:10:31 -0700257void __weak watchdog_check_hardlockup_other_cpu(void)
258{
259}
260
Ulrich Obergfell58cf6902015-11-05 18:44:30 -0800261static int watchdog_enable_all_cpus(void);
262static void watchdog_disable_all_cpus(void);
263
Don Zickus58687ac2010-05-07 17:11:44 -0400264/* watchdog kicker functions */
265static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
266{
Christoph Lameter909ea962010-12-08 16:22:55 +0100267 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400268 struct pt_regs *regs = get_irq_regs();
269 int duration;
Aaron Tomlined235872014-06-23 13:22:05 -0700270 int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace;
Don Zickus58687ac2010-05-07 17:11:44 -0400271
Don Zickusb13b3b72017-01-24 15:17:53 -0800272 if (atomic_read(&watchdog_park_in_progress) != 0)
273 return HRTIMER_NORESTART;
274
Don Zickus58687ac2010-05-07 17:11:44 -0400275 /* kick the hardlockup detector */
276 watchdog_interrupt_count();
277
Kyle Yanbd448742017-08-21 15:10:31 -0700278 /* test for hardlockups on the next cpu */
279 watchdog_check_hardlockup_other_cpu();
280
Don Zickus58687ac2010-05-07 17:11:44 -0400281 /* kick the softlockup detector */
Christoph Lameter909ea962010-12-08 16:22:55 +0100282 wake_up_process(__this_cpu_read(softlockup_watchdog));
Don Zickus58687ac2010-05-07 17:11:44 -0400283
284 /* .. and repeat */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800285 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
Don Zickus58687ac2010-05-07 17:11:44 -0400286
287 if (touch_ts == 0) {
Christoph Lameter909ea962010-12-08 16:22:55 +0100288 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
Don Zickus58687ac2010-05-07 17:11:44 -0400289 /*
290 * If the time stamp was touched atomically
291 * make sure the scheduler tick is up to date.
292 */
Christoph Lameter909ea962010-12-08 16:22:55 +0100293 __this_cpu_write(softlockup_touch_sync, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400294 sched_clock_tick();
295 }
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500296
297 /* Clear the guest paused flag on watchdog reset */
298 kvm_check_and_clear_guest_paused();
Don Zickus58687ac2010-05-07 17:11:44 -0400299 __touch_watchdog();
300 return HRTIMER_RESTART;
301 }
302
303 /* check for a softlockup
304 * This is done by making sure a high priority task is
305 * being scheduled. The task touches the watchdog to
306 * indicate it is getting cpu time. If it hasn't then
307 * this is a good indication some task is hogging the cpu
308 */
Don Zickus26e09c62010-05-17 18:06:04 -0400309 duration = is_softlockup(touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400310 if (unlikely(duration)) {
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500311 /*
312 * If a virtual machine is stopped by the host it can look to
313 * the watchdog like a soft lockup, check to see if the host
314 * stopped the vm before we issue the warning
315 */
316 if (kvm_check_and_clear_guest_paused())
317 return HRTIMER_RESTART;
318
Don Zickus58687ac2010-05-07 17:11:44 -0400319 /* only warn once */
chai wenb1a8de12014-10-09 15:25:17 -0700320 if (__this_cpu_read(soft_watchdog_warn) == true) {
321 /*
322 * When multiple processes are causing softlockups the
323 * softlockup detector only warns on the first one
324 * because the code relies on a full quiet cycle to
325 * re-arm. The second process prevents the quiet cycle
326 * and never gets reported. Use task pointers to detect
327 * this.
328 */
329 if (__this_cpu_read(softlockup_task_ptr_saved) !=
330 current) {
331 __this_cpu_write(soft_watchdog_warn, false);
332 __touch_watchdog();
333 }
Don Zickus58687ac2010-05-07 17:11:44 -0400334 return HRTIMER_RESTART;
chai wenb1a8de12014-10-09 15:25:17 -0700335 }
Don Zickus58687ac2010-05-07 17:11:44 -0400336
Aaron Tomlined235872014-06-23 13:22:05 -0700337 if (softlockup_all_cpu_backtrace) {
338 /* Prevent multiple soft-lockup reports if one cpu is already
339 * engaged in dumping cpu back traces
340 */
341 if (test_and_set_bit(0, &soft_lockup_nmi_warn)) {
342 /* Someone else will report us. Let's give up */
343 __this_cpu_write(soft_watchdog_warn, true);
344 return HRTIMER_RESTART;
345 }
346 }
347
Fabian Frederick656c3b72014-08-06 16:04:03 -0700348 pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
Don Zickus26e09c62010-05-17 18:06:04 -0400349 smp_processor_id(), duration,
Don Zickus58687ac2010-05-07 17:11:44 -0400350 current->comm, task_pid_nr(current));
Prasad Sodagudi309fb622017-03-01 15:03:05 -0800351
352 if (softlockup_panic)
353 msm_trigger_wdog_bite();
chai wenb1a8de12014-10-09 15:25:17 -0700354 __this_cpu_write(softlockup_task_ptr_saved, current);
Don Zickus58687ac2010-05-07 17:11:44 -0400355 print_modules();
356 print_irqtrace_events(current);
357 if (regs)
358 show_regs(regs);
359 else
360 dump_stack();
361
Aaron Tomlined235872014-06-23 13:22:05 -0700362 if (softlockup_all_cpu_backtrace) {
363 /* Avoid generating two back traces for current
364 * given that one is already made above
365 */
366 trigger_allbutself_cpu_backtrace();
367
368 clear_bit(0, &soft_lockup_nmi_warn);
369 /* Barrier to sync with other cpus */
370 smp_mb__after_atomic();
371 }
372
Josh Hunt69361ee2014-08-08 14:22:31 -0700373 add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK);
Don Zickus58687ac2010-05-07 17:11:44 -0400374 if (softlockup_panic)
375 panic("softlockup: hung tasks");
Christoph Lameter909ea962010-12-08 16:22:55 +0100376 __this_cpu_write(soft_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400377 } else
Christoph Lameter909ea962010-12-08 16:22:55 +0100378 __this_cpu_write(soft_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400379
380 return HRTIMER_RESTART;
381}
382
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000383static void watchdog_set_prio(unsigned int policy, unsigned int prio)
Don Zickus58687ac2010-05-07 17:11:44 -0400384{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000385 struct sched_param param = { .sched_priority = prio };
386
387 sched_setscheduler(current, policy, &param);
388}
389
Olav Haugand8354e62016-08-18 16:49:44 -0700390void watchdog_enable(unsigned int cpu)
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000391{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500392 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Olav Haugand8354e62016-08-18 16:49:44 -0700393 unsigned int *enabled = raw_cpu_ptr(&watchdog_en);
394
Olav Haugand8354e62016-08-18 16:49:44 -0700395 if (*enabled)
396 return;
Don Zickus58687ac2010-05-07 17:11:44 -0400397
Bjørn Mork3935e8952012-12-19 20:51:31 +0100398 /* kick off the timer for the hardlockup detector */
399 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
400 hrtimer->function = watchdog_timer_fn;
401
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000402 /* Enable the perf event */
403 watchdog_nmi_enable(cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400404
Don Zickus58687ac2010-05-07 17:11:44 -0400405 /* done here because hrtimer_start can only pin to smp_processor_id() */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800406 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
Don Zickus58687ac2010-05-07 17:11:44 -0400407 HRTIMER_MODE_REL_PINNED);
408
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000409 /* initialize timestamp */
410 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
411 __touch_watchdog();
Olav Haugan11113472016-11-03 15:10:57 -0700412
413 /*
414 * Need to ensure above operations are observed by other CPUs before
415 * indicating that timer is enabled. This is to synchronize core
416 * isolation and hotplug. Core isolation will wait for this flag to be
417 * set.
418 */
419 mb();
420 *enabled = 1;
Don Zickus58687ac2010-05-07 17:11:44 -0400421}
422
Olav Haugand8354e62016-08-18 16:49:44 -0700423void watchdog_disable(unsigned int cpu)
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000424{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500425 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Olav Haugand8354e62016-08-18 16:49:44 -0700426 unsigned int *enabled = raw_cpu_ptr(&watchdog_en);
427
Olav Haugand8354e62016-08-18 16:49:44 -0700428 if (!*enabled)
429 return;
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000430
431 watchdog_set_prio(SCHED_NORMAL, 0);
432 hrtimer_cancel(hrtimer);
433 /* disable the perf event */
434 watchdog_nmi_disable(cpu);
Olav Haugan11113472016-11-03 15:10:57 -0700435
436 /*
437 * No need for barrier here since disabling the watchdog is
438 * synchronized with hotplug lock
439 */
440 *enabled = 0;
441}
442
443bool watchdog_configured(unsigned int cpu)
444{
445 return *per_cpu_ptr(&watchdog_en, cpu);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000446}
447
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200448static void watchdog_cleanup(unsigned int cpu, bool online)
449{
450 watchdog_disable(cpu);
451}
452
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000453static int watchdog_should_run(unsigned int cpu)
454{
455 return __this_cpu_read(hrtimer_interrupts) !=
456 __this_cpu_read(soft_lockup_hrtimer_cnt);
457}
458
459/*
460 * The watchdog thread function - touches the timestamp.
461 *
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800462 * It only runs once every sample_period seconds (4 seconds by
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000463 * default) to reset the softlockup timestamp. If this gets delayed
464 * for more than 2*watchdog_thresh seconds then the debug-printout
465 * triggers in watchdog_timer_fn().
466 */
467static void watchdog(unsigned int cpu)
468{
469 __this_cpu_write(soft_lockup_hrtimer_cnt,
470 __this_cpu_read(hrtimer_interrupts));
471 __touch_watchdog();
Ulrich Obergfellbcfba4f2015-04-14 15:44:10 -0700472
473 /*
474 * watchdog_nmi_enable() clears the NMI_WATCHDOG_ENABLED bit in the
475 * failure path. Check for failures that can occur asynchronously -
476 * for example, when CPUs are on-lined - and shut down the hardware
477 * perf event on each CPU accordingly.
478 *
479 * The only non-obvious place this bit can be cleared is through
480 * watchdog_nmi_enable(), so a pr_info() is placed there. Placing a
481 * pr_info here would be too noisy as it would result in a message
482 * every few seconds if the hardlockup was disabled but the softlockup
483 * enabled.
484 */
485 if (!(watchdog_enabled & NMI_WATCHDOG_ENABLED))
486 watchdog_nmi_disable(cpu);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000487}
Don Zickus58687ac2010-05-07 17:11:44 -0400488
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200489static struct smp_hotplug_thread watchdog_threads = {
490 .store = &softlockup_watchdog,
491 .thread_should_run = watchdog_should_run,
492 .thread_fn = watchdog,
493 .thread_comm = "watchdog/%u",
494 .setup = watchdog_enable,
495 .cleanup = watchdog_cleanup,
496 .park = watchdog_disable,
497 .unpark = watchdog_enable,
498};
499
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700500/*
501 * park all watchdog threads that are specified in 'watchdog_cpumask'
Ulrich Obergfellee7fed52015-11-05 18:44:39 -0800502 *
503 * This function returns an error if kthread_park() of a watchdog thread
504 * fails. In this situation, the watchdog threads of some CPUs can already
505 * be parked and the watchdog threads of other CPUs can still be runnable.
506 * Callers are expected to handle this special condition as appropriate in
507 * their context.
Ulrich Obergfella2a45b82015-11-05 18:44:53 -0800508 *
509 * This function may only be called in a context that is protected against
510 * races with CPU hotplug - for example, via get_online_cpus().
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700511 */
512static int watchdog_park_threads(void)
513{
514 int cpu, ret = 0;
515
Don Zickusb13b3b72017-01-24 15:17:53 -0800516 atomic_set(&watchdog_park_in_progress, 1);
517
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700518 for_each_watchdog_cpu(cpu) {
519 ret = kthread_park(per_cpu(softlockup_watchdog, cpu));
520 if (ret)
521 break;
522 }
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700523
Don Zickusb13b3b72017-01-24 15:17:53 -0800524 atomic_set(&watchdog_park_in_progress, 0);
525
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700526 return ret;
527}
528
529/*
530 * unpark all watchdog threads that are specified in 'watchdog_cpumask'
Ulrich Obergfella2a45b82015-11-05 18:44:53 -0800531 *
532 * This function may only be called in a context that is protected against
533 * races with CPU hotplug - for example, via get_online_cpus().
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700534 */
535static void watchdog_unpark_threads(void)
536{
537 int cpu;
538
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700539 for_each_watchdog_cpu(cpu)
540 kthread_unpark(per_cpu(softlockup_watchdog, cpu));
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700541}
542
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700543/*
544 * Suspend the hard and soft lockup detector by parking the watchdog threads.
545 */
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700546int lockup_detector_suspend(void)
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700547{
548 int ret = 0;
549
Ulrich Obergfellee89e712015-11-05 18:44:47 -0800550 get_online_cpus();
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700551 mutex_lock(&watchdog_proc_mutex);
552 /*
553 * Multiple suspend requests can be active in parallel (counted by
554 * the 'watchdog_suspended' variable). If the watchdog threads are
555 * running, the first caller takes care that they will be parked.
556 * The state of 'watchdog_running' cannot change while a suspend
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700557 * request is active (see related code in 'proc' handlers).
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700558 */
559 if (watchdog_running && !watchdog_suspended)
560 ret = watchdog_park_threads();
561
562 if (ret == 0)
563 watchdog_suspended++;
Ulrich Obergfellc9935902015-11-05 18:44:36 -0800564 else {
565 watchdog_disable_all_cpus();
566 pr_err("Failed to suspend lockup detectors, disabled\n");
567 watchdog_enabled = 0;
568 }
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700569
570 mutex_unlock(&watchdog_proc_mutex);
571
572 return ret;
573}
574
575/*
576 * Resume the hard and soft lockup detector by unparking the watchdog threads.
577 */
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700578void lockup_detector_resume(void)
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700579{
580 mutex_lock(&watchdog_proc_mutex);
581
582 watchdog_suspended--;
583 /*
584 * The watchdog threads are unparked if they were previously running
585 * and if there is no more active suspend request.
586 */
587 if (watchdog_running && !watchdog_suspended)
588 watchdog_unpark_threads();
589
590 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfellee89e712015-11-05 18:44:47 -0800591 put_online_cpus();
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700592}
593
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800594static int update_watchdog_all_cpus(void)
Michal Hocko9809b182013-09-24 15:27:30 -0700595{
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800596 int ret;
597
598 ret = watchdog_park_threads();
599 if (ret)
600 return ret;
601
Ulrich Obergfelld4bdd0b2015-09-04 15:45:21 -0700602 watchdog_unpark_threads();
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800603
604 return 0;
Michal Hocko9809b182013-09-24 15:27:30 -0700605}
606
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700607static int watchdog_enable_all_cpus(void)
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200608{
609 int err = 0;
610
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200611 if (!watchdog_running) {
Frederic Weisbecker230ec932015-09-04 15:45:06 -0700612 err = smpboot_register_percpu_thread_cpumask(&watchdog_threads,
613 &watchdog_cpumask);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200614 if (err)
615 pr_err("Failed to create watchdog threads, disabled\n");
Frederic Weisbecker230ec932015-09-04 15:45:06 -0700616 else
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200617 watchdog_running = 1;
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700618 } else {
619 /*
620 * Enable/disable the lockup detectors or
621 * change the sample period 'on the fly'.
622 */
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800623 err = update_watchdog_all_cpus();
624
625 if (err) {
626 watchdog_disable_all_cpus();
627 pr_err("Failed to update lockup detectors, disabled\n");
628 }
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200629 }
630
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800631 if (err)
632 watchdog_enabled = 0;
633
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200634 return err;
635}
636
Don Zickus58687ac2010-05-07 17:11:44 -0400637static void watchdog_disable_all_cpus(void)
638{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200639 if (watchdog_running) {
640 watchdog_running = 0;
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200641 smpboot_unregister_percpu_thread(&watchdog_threads);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000642 }
Don Zickus58687ac2010-05-07 17:11:44 -0400643}
644
Ulrich Obergfell58cf6902015-11-05 18:44:30 -0800645#ifdef CONFIG_SYSCTL
646
Don Zickus58687ac2010-05-07 17:11:44 -0400647/*
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700648 * Update the run state of the lockup detectors.
Don Zickus58687ac2010-05-07 17:11:44 -0400649 */
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700650static int proc_watchdog_update(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400651{
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700652 int err = 0;
653
654 /*
655 * Watchdog threads won't be started if they are already active.
656 * The 'watchdog_running' variable in watchdog_*_all_cpus() takes
657 * care of this. If those threads are already active, the sample
658 * period will be updated and the lockup detectors will be enabled
659 * or disabled 'on the fly'.
660 */
661 if (watchdog_enabled && watchdog_thresh)
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700662 err = watchdog_enable_all_cpus();
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700663 else
664 watchdog_disable_all_cpus();
665
666 return err;
667
668}
669
670/*
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700671 * common function for watchdog, nmi_watchdog and soft_watchdog parameter
672 *
673 * caller | table->data points to | 'which' contains the flag(s)
674 * -------------------|-----------------------|-----------------------------
675 * proc_watchdog | watchdog_user_enabled | NMI_WATCHDOG_ENABLED or'ed
676 * | | with SOFT_WATCHDOG_ENABLED
677 * -------------------|-----------------------|-----------------------------
678 * proc_nmi_watchdog | nmi_watchdog_enabled | NMI_WATCHDOG_ENABLED
679 * -------------------|-----------------------|-----------------------------
680 * proc_soft_watchdog | soft_watchdog_enabled | SOFT_WATCHDOG_ENABLED
681 */
682static int proc_watchdog_common(int which, struct ctl_table *table, int write,
683 void __user *buffer, size_t *lenp, loff_t *ppos)
684{
685 int err, old, new;
686 int *watchdog_param = (int *)table->data;
Don Zickus58687ac2010-05-07 17:11:44 -0400687
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800688 get_online_cpus();
Michal Hocko359e6fa2013-09-24 15:27:29 -0700689 mutex_lock(&watchdog_proc_mutex);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000690
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700691 if (watchdog_suspended) {
692 /* no parameter changes allowed while watchdog is suspended */
693 err = -EAGAIN;
694 goto out;
695 }
696
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700697 /*
698 * If the parameter is being read return the state of the corresponding
699 * bit(s) in 'watchdog_enabled', else update 'watchdog_enabled' and the
700 * run state of the lockup detectors.
701 */
702 if (!write) {
703 *watchdog_param = (watchdog_enabled & which) != 0;
704 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
705 } else {
706 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
707 if (err)
708 goto out;
709
710 /*
711 * There is a race window between fetching the current value
712 * from 'watchdog_enabled' and storing the new value. During
713 * this race window, watchdog_nmi_enable() can sneak in and
714 * clear the NMI_WATCHDOG_ENABLED bit in 'watchdog_enabled'.
715 * The 'cmpxchg' detects this race and the loop retries.
716 */
717 do {
718 old = watchdog_enabled;
719 /*
720 * If the parameter value is not zero set the
721 * corresponding bit(s), else clear it(them).
722 */
723 if (*watchdog_param)
724 new = old | which;
725 else
726 new = old & ~which;
727 } while (cmpxchg(&watchdog_enabled, old, new) != old);
728
729 /*
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800730 * Update the run state of the lockup detectors. There is _no_
731 * need to check the value returned by proc_watchdog_update()
732 * and to restore the previous value of 'watchdog_enabled' as
733 * both lockup detectors are disabled if proc_watchdog_update()
734 * returns an error.
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700735 */
Joshua Hunta1ee1932016-03-17 14:17:23 -0700736 if (old == new)
737 goto out;
738
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700739 err = proc_watchdog_update();
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700740 }
741out:
742 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800743 put_online_cpus();
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700744 return err;
745}
746
747/*
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700748 * /proc/sys/kernel/watchdog
749 */
750int proc_watchdog(struct ctl_table *table, int write,
751 void __user *buffer, size_t *lenp, loff_t *ppos)
752{
753 return proc_watchdog_common(NMI_WATCHDOG_ENABLED|SOFT_WATCHDOG_ENABLED,
754 table, write, buffer, lenp, ppos);
755}
756
757/*
758 * /proc/sys/kernel/nmi_watchdog
759 */
760int proc_nmi_watchdog(struct ctl_table *table, int write,
761 void __user *buffer, size_t *lenp, loff_t *ppos)
762{
763 return proc_watchdog_common(NMI_WATCHDOG_ENABLED,
764 table, write, buffer, lenp, ppos);
765}
766
767/*
768 * /proc/sys/kernel/soft_watchdog
769 */
770int proc_soft_watchdog(struct ctl_table *table, int write,
771 void __user *buffer, size_t *lenp, loff_t *ppos)
772{
773 return proc_watchdog_common(SOFT_WATCHDOG_ENABLED,
774 table, write, buffer, lenp, ppos);
775}
776
777/*
778 * /proc/sys/kernel/watchdog_thresh
779 */
780int proc_watchdog_thresh(struct ctl_table *table, int write,
781 void __user *buffer, size_t *lenp, loff_t *ppos)
782{
Joshua Hunta1ee1932016-03-17 14:17:23 -0700783 int err, old, new;
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700784
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800785 get_online_cpus();
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700786 mutex_lock(&watchdog_proc_mutex);
787
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700788 if (watchdog_suspended) {
789 /* no parameter changes allowed while watchdog is suspended */
790 err = -EAGAIN;
791 goto out;
792 }
793
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700794 old = ACCESS_ONCE(watchdog_thresh);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200795 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700796
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200797 if (err || !write)
Michal Hocko359e6fa2013-09-24 15:27:29 -0700798 goto out;
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700799
anish kumarb66a2352013-03-12 14:44:08 -0400800 /*
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800801 * Update the sample period. Restore on failure.
anish kumarb66a2352013-03-12 14:44:08 -0400802 */
Joshua Hunta1ee1932016-03-17 14:17:23 -0700803 new = ACCESS_ONCE(watchdog_thresh);
804 if (old == new)
805 goto out;
806
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700807 set_sample_period();
808 err = proc_watchdog_update();
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800809 if (err) {
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700810 watchdog_thresh = old;
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800811 set_sample_period();
812 }
Michal Hocko359e6fa2013-09-24 15:27:29 -0700813out:
814 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800815 put_online_cpus();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200816 return err;
Don Zickus58687ac2010-05-07 17:11:44 -0400817}
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700818
819/*
820 * The cpumask is the mask of possible cpus that the watchdog can run
821 * on, not the mask of cpus it is actually running on. This allows the
822 * user to specify a mask that will include cpus that have not yet
823 * been brought online, if desired.
824 */
825int proc_watchdog_cpumask(struct ctl_table *table, int write,
826 void __user *buffer, size_t *lenp, loff_t *ppos)
827{
828 int err;
829
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800830 get_online_cpus();
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700831 mutex_lock(&watchdog_proc_mutex);
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700832
833 if (watchdog_suspended) {
834 /* no parameter changes allowed while watchdog is suspended */
835 err = -EAGAIN;
836 goto out;
837 }
838
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700839 err = proc_do_large_bitmap(table, write, buffer, lenp, ppos);
840 if (!err && write) {
841 /* Remove impossible cpus to keep sysctl output cleaner. */
842 cpumask_and(&watchdog_cpumask, &watchdog_cpumask,
843 cpu_possible_mask);
844
845 if (watchdog_running) {
846 /*
847 * Failure would be due to being unable to allocate
848 * a temporary cpumask, so we are likely not in a
849 * position to do much else to make things better.
850 */
851 if (smpboot_update_cpumask_percpu_thread(
852 &watchdog_threads, &watchdog_cpumask) != 0)
853 pr_err("cpumask update failed\n");
854 }
855 }
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700856out:
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700857 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800858 put_online_cpus();
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700859 return err;
860}
861
Don Zickus58687ac2010-05-07 17:11:44 -0400862#endif /* CONFIG_SYSCTL */
863
Peter Zijlstra004417a2010-11-25 18:38:29 +0100864void __init lockup_detector_init(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400865{
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800866 set_sample_period();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200867
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700868#ifdef CONFIG_NO_HZ_FULL
869 if (tick_nohz_full_enabled()) {
Frederic Weisbecker314b08ff2015-09-04 15:45:09 -0700870 pr_info("Disabling watchdog on nohz_full cores by default\n");
871 cpumask_copy(&watchdog_cpumask, housekeeping_mask);
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700872 } else
873 cpumask_copy(&watchdog_cpumask, cpu_possible_mask);
874#else
875 cpumask_copy(&watchdog_cpumask, cpu_possible_mask);
876#endif
877
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700878 if (watchdog_enabled)
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700879 watchdog_enable_all_cpus();
Don Zickus58687ac2010-05-07 17:11:44 -0400880}