blob: 082ca6878a3f44665e5d88441ab01ae237b45c23 [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>
18#include <linux/delay.h>
19#include <linux/freezer.h>
20#include <linux/kthread.h>
21#include <linux/lockdep.h>
22#include <linux/notifier.h>
23#include <linux/module.h>
24#include <linux/sysctl.h>
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000025#include <linux/smpboot.h>
Don Zickus58687ac2010-05-07 17:11:44 -040026
27#include <asm/irq_regs.h>
Eric B Munson5d1c0f42012-03-10 14:37:28 -050028#include <linux/kvm_para.h>
Don Zickus58687ac2010-05-07 17:11:44 -040029#include <linux/perf_event.h>
30
Marcin Slusarz41350382011-01-28 11:00:31 -050031int watchdog_enabled = 1;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -070032int __read_mostly watchdog_thresh = 10;
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000033static int __read_mostly watchdog_disabled;
Chuansheng Liu0f34c402012-12-17 15:59:50 -080034static u64 __read_mostly sample_period;
Don Zickus58687ac2010-05-07 17:11:44 -040035
36static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
37static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
38static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
39static DEFINE_PER_CPU(bool, softlockup_touch_sync);
Don Zickus58687ac2010-05-07 17:11:44 -040040static DEFINE_PER_CPU(bool, soft_watchdog_warn);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000041static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
42static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt);
Frederic Weisbecker23637d42010-05-15 23:15:20 +020043#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickuscafcd802010-05-14 11:11:21 -040044static DEFINE_PER_CPU(bool, hard_watchdog_warn);
45static DEFINE_PER_CPU(bool, watchdog_nmi_touch);
Don Zickus58687ac2010-05-07 17:11:44 -040046static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
47static DEFINE_PER_CPU(struct perf_event *, watchdog_ev);
48#endif
49
Don Zickus58687ac2010-05-07 17:11:44 -040050/* boot commands */
51/*
52 * Should we panic when a soft-lockup or hard-lockup occurs:
53 */
Frederic Weisbecker23637d42010-05-15 23:15:20 +020054#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusfef2c9b2011-03-22 16:34:16 -070055static int hardlockup_panic =
56 CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE;
Don Zickus58687ac2010-05-07 17:11:44 -040057
58static int __init hardlockup_panic_setup(char *str)
59{
60 if (!strncmp(str, "panic", 5))
61 hardlockup_panic = 1;
Don Zickusfef2c9b2011-03-22 16:34:16 -070062 else if (!strncmp(str, "nopanic", 7))
63 hardlockup_panic = 0;
Don Zickus5dc30552010-11-29 17:07:17 -050064 else if (!strncmp(str, "0", 1))
Marcin Slusarz41350382011-01-28 11:00:31 -050065 watchdog_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -040066 return 1;
67}
68__setup("nmi_watchdog=", hardlockup_panic_setup);
69#endif
70
71unsigned int __read_mostly softlockup_panic =
72 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
73
74static int __init softlockup_panic_setup(char *str)
75{
76 softlockup_panic = simple_strtoul(str, NULL, 0);
77
78 return 1;
79}
80__setup("softlockup_panic=", softlockup_panic_setup);
81
82static int __init nowatchdog_setup(char *str)
83{
Marcin Slusarz41350382011-01-28 11:00:31 -050084 watchdog_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -040085 return 1;
86}
87__setup("nowatchdog", nowatchdog_setup);
88
89/* deprecated */
90static int __init nosoftlockup_setup(char *str)
91{
Marcin Slusarz41350382011-01-28 11:00:31 -050092 watchdog_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -040093 return 1;
94}
95__setup("nosoftlockup", nosoftlockup_setup);
96/* */
97
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -070098/*
99 * Hard-lockup warnings should be triggered after just a few seconds. Soft-
100 * lockups can have false positives under extreme conditions. So we generally
101 * want a higher threshold for soft lockups than for hard lockups. So we couple
102 * the thresholds with a factor: we make the soft threshold twice the amount of
103 * time the hard threshold is.
104 */
Ingo Molnar6e9101a2011-05-24 05:43:18 +0200105static int get_softlockup_thresh(void)
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700106{
107 return watchdog_thresh * 2;
108}
Don Zickus58687ac2010-05-07 17:11:44 -0400109
110/*
111 * Returns seconds, approximately. We don't need nanosecond
112 * resolution, and we don't need to waste time with a big divide when
113 * 2^30ns == 1.074s.
114 */
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900115static unsigned long get_timestamp(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400116{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900117 return local_clock() >> 30LL; /* 2^30 ~= 10^9 */
Don Zickus58687ac2010-05-07 17:11:44 -0400118}
119
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800120static void set_sample_period(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400121{
122 /*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700123 * convert watchdog_thresh from seconds to ns
Fernando Luis Vázquez Cao86f5e6a2012-02-09 17:42:22 -0500124 * the divide by 5 is to give hrtimer several chances (two
125 * or three with the current relation between the soft
126 * and hard thresholds) to increment before the
127 * hardlockup detector generates a warning
Don Zickus58687ac2010-05-07 17:11:44 -0400128 */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800129 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
Don Zickus58687ac2010-05-07 17:11:44 -0400130}
131
132/* Commands for resetting the watchdog */
133static void __touch_watchdog(void)
134{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900135 __this_cpu_write(watchdog_touch_ts, get_timestamp());
Don Zickus58687ac2010-05-07 17:11:44 -0400136}
137
Don Zickus332fbdb2010-05-07 17:11:45 -0400138void touch_softlockup_watchdog(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400139{
Christoph Lameter909ea962010-12-08 16:22:55 +0100140 __this_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400141}
Ingo Molnar0167c782010-05-13 08:53:33 +0200142EXPORT_SYMBOL(touch_softlockup_watchdog);
Don Zickus58687ac2010-05-07 17:11:44 -0400143
Don Zickus332fbdb2010-05-07 17:11:45 -0400144void touch_all_softlockup_watchdogs(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400145{
146 int cpu;
147
148 /*
149 * this is done lockless
150 * do we care if a 0 races with a timestamp?
151 * all it means is the softlock check starts one cycle later
152 */
153 for_each_online_cpu(cpu)
154 per_cpu(watchdog_touch_ts, cpu) = 0;
155}
156
Don Zickuscafcd802010-05-14 11:11:21 -0400157#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400158void touch_nmi_watchdog(void)
159{
Don Zickus68d3f1d2010-08-31 23:00:07 -0400160 if (watchdog_enabled) {
161 unsigned cpu;
162
163 for_each_present_cpu(cpu) {
164 if (per_cpu(watchdog_nmi_touch, cpu) != true)
165 per_cpu(watchdog_nmi_touch, cpu) = true;
166 }
167 }
Don Zickus332fbdb2010-05-07 17:11:45 -0400168 touch_softlockup_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400169}
170EXPORT_SYMBOL(touch_nmi_watchdog);
171
Don Zickuscafcd802010-05-14 11:11:21 -0400172#endif
173
Don Zickus58687ac2010-05-07 17:11:44 -0400174void touch_softlockup_watchdog_sync(void)
175{
176 __raw_get_cpu_var(softlockup_touch_sync) = true;
177 __raw_get_cpu_var(watchdog_touch_ts) = 0;
178}
179
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200180#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400181/* watchdog detector functions */
Don Zickus26e09c62010-05-17 18:06:04 -0400182static int is_hardlockup(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400183{
Christoph Lameter909ea962010-12-08 16:22:55 +0100184 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400185
Christoph Lameter909ea962010-12-08 16:22:55 +0100186 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
Don Zickus58687ac2010-05-07 17:11:44 -0400187 return 1;
188
Christoph Lameter909ea962010-12-08 16:22:55 +0100189 __this_cpu_write(hrtimer_interrupts_saved, hrint);
Don Zickus58687ac2010-05-07 17:11:44 -0400190 return 0;
191}
192#endif
193
Don Zickus26e09c62010-05-17 18:06:04 -0400194static int is_softlockup(unsigned long touch_ts)
Don Zickus58687ac2010-05-07 17:11:44 -0400195{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900196 unsigned long now = get_timestamp();
Don Zickus58687ac2010-05-07 17:11:44 -0400197
198 /* Warn about unreasonable delays: */
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700199 if (time_after(now, touch_ts + get_softlockup_thresh()))
Don Zickus58687ac2010-05-07 17:11:44 -0400200 return now - touch_ts;
201
202 return 0;
203}
204
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200205#ifdef CONFIG_HARDLOCKUP_DETECTOR
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400206
Don Zickus58687ac2010-05-07 17:11:44 -0400207static struct perf_event_attr wd_hw_attr = {
208 .type = PERF_TYPE_HARDWARE,
209 .config = PERF_COUNT_HW_CPU_CYCLES,
210 .size = sizeof(struct perf_event_attr),
211 .pinned = 1,
212 .disabled = 1,
213};
214
215/* Callback function for perf event subsystem */
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200216static void watchdog_overflow_callback(struct perf_event *event,
Don Zickus58687ac2010-05-07 17:11:44 -0400217 struct perf_sample_data *data,
218 struct pt_regs *regs)
219{
Peter Zijlstrac6db67c2010-08-20 11:49:15 +0200220 /* Ensure the watchdog never gets throttled */
221 event->hw.interrupts = 0;
222
Christoph Lameter909ea962010-12-08 16:22:55 +0100223 if (__this_cpu_read(watchdog_nmi_touch) == true) {
224 __this_cpu_write(watchdog_nmi_touch, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400225 return;
226 }
227
228 /* check for a hardlockup
229 * This is done by making sure our timer interrupt
230 * is incrementing. The timer interrupt should have
231 * fired multiple times before we overflow'd. If it hasn't
232 * then this is a good indication the cpu is stuck
233 */
Don Zickus26e09c62010-05-17 18:06:04 -0400234 if (is_hardlockup()) {
235 int this_cpu = smp_processor_id();
236
Don Zickus58687ac2010-05-07 17:11:44 -0400237 /* only print hardlockups once */
Christoph Lameter909ea962010-12-08 16:22:55 +0100238 if (__this_cpu_read(hard_watchdog_warn) == true)
Don Zickus58687ac2010-05-07 17:11:44 -0400239 return;
240
241 if (hardlockup_panic)
242 panic("Watchdog detected hard LOCKUP on cpu %d", this_cpu);
243 else
244 WARN(1, "Watchdog detected hard LOCKUP on cpu %d", this_cpu);
245
Christoph Lameter909ea962010-12-08 16:22:55 +0100246 __this_cpu_write(hard_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400247 return;
248 }
249
Christoph Lameter909ea962010-12-08 16:22:55 +0100250 __this_cpu_write(hard_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400251 return;
252}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000253#endif /* CONFIG_HARDLOCKUP_DETECTOR */
254
Don Zickus58687ac2010-05-07 17:11:44 -0400255static void watchdog_interrupt_count(void)
256{
Christoph Lameter909ea962010-12-08 16:22:55 +0100257 __this_cpu_inc(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400258}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000259
260static int watchdog_nmi_enable(unsigned int cpu);
261static void watchdog_nmi_disable(unsigned int cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400262
263/* watchdog kicker functions */
264static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
265{
Christoph Lameter909ea962010-12-08 16:22:55 +0100266 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400267 struct pt_regs *regs = get_irq_regs();
268 int duration;
269
270 /* kick the hardlockup detector */
271 watchdog_interrupt_count();
272
273 /* kick the softlockup detector */
Christoph Lameter909ea962010-12-08 16:22:55 +0100274 wake_up_process(__this_cpu_read(softlockup_watchdog));
Don Zickus58687ac2010-05-07 17:11:44 -0400275
276 /* .. and repeat */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800277 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
Don Zickus58687ac2010-05-07 17:11:44 -0400278
279 if (touch_ts == 0) {
Christoph Lameter909ea962010-12-08 16:22:55 +0100280 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
Don Zickus58687ac2010-05-07 17:11:44 -0400281 /*
282 * If the time stamp was touched atomically
283 * make sure the scheduler tick is up to date.
284 */
Christoph Lameter909ea962010-12-08 16:22:55 +0100285 __this_cpu_write(softlockup_touch_sync, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400286 sched_clock_tick();
287 }
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500288
289 /* Clear the guest paused flag on watchdog reset */
290 kvm_check_and_clear_guest_paused();
Don Zickus58687ac2010-05-07 17:11:44 -0400291 __touch_watchdog();
292 return HRTIMER_RESTART;
293 }
294
295 /* check for a softlockup
296 * This is done by making sure a high priority task is
297 * being scheduled. The task touches the watchdog to
298 * indicate it is getting cpu time. If it hasn't then
299 * this is a good indication some task is hogging the cpu
300 */
Don Zickus26e09c62010-05-17 18:06:04 -0400301 duration = is_softlockup(touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400302 if (unlikely(duration)) {
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500303 /*
304 * If a virtual machine is stopped by the host it can look to
305 * the watchdog like a soft lockup, check to see if the host
306 * stopped the vm before we issue the warning
307 */
308 if (kvm_check_and_clear_guest_paused())
309 return HRTIMER_RESTART;
310
Don Zickus58687ac2010-05-07 17:11:44 -0400311 /* only warn once */
Christoph Lameter909ea962010-12-08 16:22:55 +0100312 if (__this_cpu_read(soft_watchdog_warn) == true)
Don Zickus58687ac2010-05-07 17:11:44 -0400313 return HRTIMER_RESTART;
314
Prarit Bhargavab0f4c4b2012-01-26 08:55:34 -0500315 printk(KERN_EMERG "BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
Don Zickus26e09c62010-05-17 18:06:04 -0400316 smp_processor_id(), duration,
Don Zickus58687ac2010-05-07 17:11:44 -0400317 current->comm, task_pid_nr(current));
318 print_modules();
319 print_irqtrace_events(current);
320 if (regs)
321 show_regs(regs);
322 else
323 dump_stack();
324
325 if (softlockup_panic)
326 panic("softlockup: hung tasks");
Christoph Lameter909ea962010-12-08 16:22:55 +0100327 __this_cpu_write(soft_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400328 } else
Christoph Lameter909ea962010-12-08 16:22:55 +0100329 __this_cpu_write(soft_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400330
331 return HRTIMER_RESTART;
332}
333
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000334static void watchdog_set_prio(unsigned int policy, unsigned int prio)
Don Zickus58687ac2010-05-07 17:11:44 -0400335{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000336 struct sched_param param = { .sched_priority = prio };
337
338 sched_setscheduler(current, policy, &param);
339}
340
341static void watchdog_enable(unsigned int cpu)
342{
Don Zickus26e09c62010-05-17 18:06:04 -0400343 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
Don Zickus58687ac2010-05-07 17:11:44 -0400344
Bjørn Mork3935e8952012-12-19 20:51:31 +0100345 /* kick off the timer for the hardlockup detector */
346 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
347 hrtimer->function = watchdog_timer_fn;
348
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000349 if (!watchdog_enabled) {
350 kthread_park(current);
351 return;
352 }
353
354 /* Enable the perf event */
355 watchdog_nmi_enable(cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400356
Don Zickus58687ac2010-05-07 17:11:44 -0400357 /* done here because hrtimer_start can only pin to smp_processor_id() */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800358 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
Don Zickus58687ac2010-05-07 17:11:44 -0400359 HRTIMER_MODE_REL_PINNED);
360
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000361 /* initialize timestamp */
362 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
363 __touch_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400364}
365
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000366static void watchdog_disable(unsigned int cpu)
367{
368 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
369
370 watchdog_set_prio(SCHED_NORMAL, 0);
371 hrtimer_cancel(hrtimer);
372 /* disable the perf event */
373 watchdog_nmi_disable(cpu);
374}
375
376static int watchdog_should_run(unsigned int cpu)
377{
378 return __this_cpu_read(hrtimer_interrupts) !=
379 __this_cpu_read(soft_lockup_hrtimer_cnt);
380}
381
382/*
383 * The watchdog thread function - touches the timestamp.
384 *
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800385 * It only runs once every sample_period seconds (4 seconds by
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000386 * default) to reset the softlockup timestamp. If this gets delayed
387 * for more than 2*watchdog_thresh seconds then the debug-printout
388 * triggers in watchdog_timer_fn().
389 */
390static void watchdog(unsigned int cpu)
391{
392 __this_cpu_write(soft_lockup_hrtimer_cnt,
393 __this_cpu_read(hrtimer_interrupts));
394 __touch_watchdog();
395}
Don Zickus58687ac2010-05-07 17:11:44 -0400396
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200397#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusa7027042012-06-13 09:35:48 -0400398/*
399 * People like the simple clean cpu node info on boot.
400 * Reduce the watchdog noise by only printing messages
401 * that are different from what cpu0 displayed.
402 */
403static unsigned long cpu0_err;
404
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000405static int watchdog_nmi_enable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400406{
407 struct perf_event_attr *wd_attr;
408 struct perf_event *event = per_cpu(watchdog_ev, cpu);
409
410 /* is it already setup and enabled? */
411 if (event && event->state > PERF_EVENT_STATE_OFF)
412 goto out;
413
414 /* it is setup but not enabled */
415 if (event != NULL)
416 goto out_enable;
417
Don Zickus58687ac2010-05-07 17:11:44 -0400418 wd_attr = &wd_hw_attr;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700419 wd_attr->sample_period = hw_nmi_get_sample_period(watchdog_thresh);
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400420
421 /* Try to register using hardware perf events */
Avi Kivity4dc0da82011-06-29 18:42:35 +0300422 event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL);
Don Zickusa7027042012-06-13 09:35:48 -0400423
424 /* save cpu0 error for future comparision */
425 if (cpu == 0 && IS_ERR(event))
426 cpu0_err = PTR_ERR(event);
427
Don Zickus58687ac2010-05-07 17:11:44 -0400428 if (!IS_ERR(event)) {
Don Zickusa7027042012-06-13 09:35:48 -0400429 /* only print for cpu0 or different than cpu0 */
430 if (cpu == 0 || cpu0_err)
431 pr_info("enabled on all CPUs, permanently consumes one hw-PMU counter.\n");
Don Zickus58687ac2010-05-07 17:11:44 -0400432 goto out_save;
433 }
434
Don Zickusa7027042012-06-13 09:35:48 -0400435 /* skip displaying the same error again */
436 if (cpu > 0 && (PTR_ERR(event) == cpu0_err))
437 return PTR_ERR(event);
Don Zickus5651f7f2011-02-09 14:02:33 -0500438
439 /* vary the KERN level based on the returned errno */
440 if (PTR_ERR(event) == -EOPNOTSUPP)
Andrew Morton45019802012-03-23 15:01:55 -0700441 pr_info("disabled (cpu%i): not supported (no LAPIC?)\n", cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500442 else if (PTR_ERR(event) == -ENOENT)
Andrew Morton45019802012-03-23 15:01:55 -0700443 pr_warning("disabled (cpu%i): hardware events not enabled\n",
444 cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500445 else
Andrew Morton45019802012-03-23 15:01:55 -0700446 pr_err("disabled (cpu%i): unable to create perf event: %ld\n",
447 cpu, PTR_ERR(event));
Akinobu Mitaeac24332010-08-31 23:00:08 -0400448 return PTR_ERR(event);
Don Zickus58687ac2010-05-07 17:11:44 -0400449
450 /* success path */
451out_save:
452 per_cpu(watchdog_ev, cpu) = event;
453out_enable:
454 perf_event_enable(per_cpu(watchdog_ev, cpu));
455out:
456 return 0;
457}
458
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000459static void watchdog_nmi_disable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400460{
461 struct perf_event *event = per_cpu(watchdog_ev, cpu);
462
463 if (event) {
464 perf_event_disable(event);
465 per_cpu(watchdog_ev, cpu) = NULL;
466
467 /* should be in cleanup, but blocks oprofile */
468 perf_event_release_kernel(event);
469 }
470 return;
471}
472#else
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000473static int watchdog_nmi_enable(unsigned int cpu) { return 0; }
474static void watchdog_nmi_disable(unsigned int cpu) { return; }
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200475#endif /* CONFIG_HARDLOCKUP_DETECTOR */
Don Zickus58687ac2010-05-07 17:11:44 -0400476
477/* prepare/enable/disable routines */
Vasily Averin4ff81952011-10-31 17:11:18 -0700478/* sysctl functions */
479#ifdef CONFIG_SYSCTL
Don Zickus58687ac2010-05-07 17:11:44 -0400480static void watchdog_enable_all_cpus(void)
481{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000482 unsigned int cpu;
Marcin Slusarz39735762011-01-28 11:00:32 -0500483
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000484 if (watchdog_disabled) {
485 watchdog_disabled = 0;
486 for_each_online_cpu(cpu)
487 kthread_unpark(per_cpu(softlockup_watchdog, cpu));
488 }
Don Zickus58687ac2010-05-07 17:11:44 -0400489}
490
491static void watchdog_disable_all_cpus(void)
492{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000493 unsigned int cpu;
Don Zickus58687ac2010-05-07 17:11:44 -0400494
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000495 if (!watchdog_disabled) {
496 watchdog_disabled = 1;
497 for_each_online_cpu(cpu)
498 kthread_park(per_cpu(softlockup_watchdog, cpu));
499 }
Don Zickus58687ac2010-05-07 17:11:44 -0400500}
501
Don Zickus58687ac2010-05-07 17:11:44 -0400502/*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700503 * proc handler for /proc/sys/kernel/nmi_watchdog,watchdog_thresh
Don Zickus58687ac2010-05-07 17:11:44 -0400504 */
505
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700506int proc_dowatchdog(struct ctl_table *table, int write,
507 void __user *buffer, size_t *lenp, loff_t *ppos)
Don Zickus58687ac2010-05-07 17:11:44 -0400508{
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700509 int ret;
Don Zickus58687ac2010-05-07 17:11:44 -0400510
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000511 if (watchdog_disabled < 0)
512 return -ENODEV;
513
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700514 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700515 if (ret || !write)
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000516 return ret;
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700517
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800518 set_sample_period();
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700519 if (watchdog_enabled && watchdog_thresh)
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700520 watchdog_enable_all_cpus();
521 else
522 watchdog_disable_all_cpus();
523
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700524 return ret;
Don Zickus58687ac2010-05-07 17:11:44 -0400525}
Don Zickus58687ac2010-05-07 17:11:44 -0400526#endif /* CONFIG_SYSCTL */
527
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000528static struct smp_hotplug_thread watchdog_threads = {
529 .store = &softlockup_watchdog,
530 .thread_should_run = watchdog_should_run,
531 .thread_fn = watchdog,
532 .thread_comm = "watchdog/%u",
533 .setup = watchdog_enable,
534 .park = watchdog_disable,
535 .unpark = watchdog_enable,
Don Zickus58687ac2010-05-07 17:11:44 -0400536};
537
Peter Zijlstra004417a2010-11-25 18:38:29 +0100538void __init lockup_detector_init(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400539{
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800540 set_sample_period();
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000541 if (smpboot_register_percpu_thread(&watchdog_threads)) {
542 pr_err("Failed to create watchdog threads, disabled\n");
543 watchdog_disabled = -ENODEV;
544 }
Don Zickus58687ac2010-05-07 17:11:44 -0400545}