blob: 997c6a16ec2278969a10f251f63f237e7559d42e [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 */
115static unsigned long get_timestamp(int this_cpu)
116{
117 return cpu_clock(this_cpu) >> 30LL; /* 2^30 ~= 10^9 */
118}
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{
Don Zickus26e09c62010-05-17 18:06:04 -0400135 int this_cpu = smp_processor_id();
Don Zickus58687ac2010-05-07 17:11:44 -0400136
Christoph Lameter909ea962010-12-08 16:22:55 +0100137 __this_cpu_write(watchdog_touch_ts, get_timestamp(this_cpu));
Don Zickus58687ac2010-05-07 17:11:44 -0400138}
139
Don Zickus332fbdb2010-05-07 17:11:45 -0400140void touch_softlockup_watchdog(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400141{
Christoph Lameter909ea962010-12-08 16:22:55 +0100142 __this_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400143}
Ingo Molnar0167c782010-05-13 08:53:33 +0200144EXPORT_SYMBOL(touch_softlockup_watchdog);
Don Zickus58687ac2010-05-07 17:11:44 -0400145
Don Zickus332fbdb2010-05-07 17:11:45 -0400146void touch_all_softlockup_watchdogs(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400147{
148 int cpu;
149
150 /*
151 * this is done lockless
152 * do we care if a 0 races with a timestamp?
153 * all it means is the softlock check starts one cycle later
154 */
155 for_each_online_cpu(cpu)
156 per_cpu(watchdog_touch_ts, cpu) = 0;
157}
158
Don Zickuscafcd802010-05-14 11:11:21 -0400159#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400160void touch_nmi_watchdog(void)
161{
Don Zickus68d3f1d2010-08-31 23:00:07 -0400162 if (watchdog_enabled) {
163 unsigned cpu;
164
165 for_each_present_cpu(cpu) {
166 if (per_cpu(watchdog_nmi_touch, cpu) != true)
167 per_cpu(watchdog_nmi_touch, cpu) = true;
168 }
169 }
Don Zickus332fbdb2010-05-07 17:11:45 -0400170 touch_softlockup_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400171}
172EXPORT_SYMBOL(touch_nmi_watchdog);
173
Don Zickuscafcd802010-05-14 11:11:21 -0400174#endif
175
Don Zickus58687ac2010-05-07 17:11:44 -0400176void touch_softlockup_watchdog_sync(void)
177{
178 __raw_get_cpu_var(softlockup_touch_sync) = true;
179 __raw_get_cpu_var(watchdog_touch_ts) = 0;
180}
181
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200182#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400183/* watchdog detector functions */
Don Zickus26e09c62010-05-17 18:06:04 -0400184static int is_hardlockup(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400185{
Christoph Lameter909ea962010-12-08 16:22:55 +0100186 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400187
Christoph Lameter909ea962010-12-08 16:22:55 +0100188 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
Don Zickus58687ac2010-05-07 17:11:44 -0400189 return 1;
190
Christoph Lameter909ea962010-12-08 16:22:55 +0100191 __this_cpu_write(hrtimer_interrupts_saved, hrint);
Don Zickus58687ac2010-05-07 17:11:44 -0400192 return 0;
193}
194#endif
195
Don Zickus26e09c62010-05-17 18:06:04 -0400196static int is_softlockup(unsigned long touch_ts)
Don Zickus58687ac2010-05-07 17:11:44 -0400197{
Don Zickus26e09c62010-05-17 18:06:04 -0400198 unsigned long now = get_timestamp(smp_processor_id());
Don Zickus58687ac2010-05-07 17:11:44 -0400199
200 /* Warn about unreasonable delays: */
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700201 if (time_after(now, touch_ts + get_softlockup_thresh()))
Don Zickus58687ac2010-05-07 17:11:44 -0400202 return now - touch_ts;
203
204 return 0;
205}
206
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200207#ifdef CONFIG_HARDLOCKUP_DETECTOR
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400208
Don Zickus58687ac2010-05-07 17:11:44 -0400209static struct perf_event_attr wd_hw_attr = {
210 .type = PERF_TYPE_HARDWARE,
211 .config = PERF_COUNT_HW_CPU_CYCLES,
212 .size = sizeof(struct perf_event_attr),
213 .pinned = 1,
214 .disabled = 1,
215};
216
217/* Callback function for perf event subsystem */
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200218static void watchdog_overflow_callback(struct perf_event *event,
Don Zickus58687ac2010-05-07 17:11:44 -0400219 struct perf_sample_data *data,
220 struct pt_regs *regs)
221{
Peter Zijlstrac6db67c2010-08-20 11:49:15 +0200222 /* Ensure the watchdog never gets throttled */
223 event->hw.interrupts = 0;
224
Christoph Lameter909ea962010-12-08 16:22:55 +0100225 if (__this_cpu_read(watchdog_nmi_touch) == true) {
226 __this_cpu_write(watchdog_nmi_touch, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400227 return;
228 }
229
230 /* check for a hardlockup
231 * This is done by making sure our timer interrupt
232 * is incrementing. The timer interrupt should have
233 * fired multiple times before we overflow'd. If it hasn't
234 * then this is a good indication the cpu is stuck
235 */
Don Zickus26e09c62010-05-17 18:06:04 -0400236 if (is_hardlockup()) {
237 int this_cpu = smp_processor_id();
238
Don Zickus58687ac2010-05-07 17:11:44 -0400239 /* only print hardlockups once */
Christoph Lameter909ea962010-12-08 16:22:55 +0100240 if (__this_cpu_read(hard_watchdog_warn) == true)
Don Zickus58687ac2010-05-07 17:11:44 -0400241 return;
242
243 if (hardlockup_panic)
244 panic("Watchdog detected hard LOCKUP on cpu %d", this_cpu);
245 else
246 WARN(1, "Watchdog detected hard LOCKUP on cpu %d", this_cpu);
247
Christoph Lameter909ea962010-12-08 16:22:55 +0100248 __this_cpu_write(hard_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400249 return;
250 }
251
Christoph Lameter909ea962010-12-08 16:22:55 +0100252 __this_cpu_write(hard_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400253 return;
254}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000255#endif /* CONFIG_HARDLOCKUP_DETECTOR */
256
Don Zickus58687ac2010-05-07 17:11:44 -0400257static void watchdog_interrupt_count(void)
258{
Christoph Lameter909ea962010-12-08 16:22:55 +0100259 __this_cpu_inc(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400260}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000261
262static int watchdog_nmi_enable(unsigned int cpu);
263static void watchdog_nmi_disable(unsigned int cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400264
265/* watchdog kicker functions */
266static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
267{
Christoph Lameter909ea962010-12-08 16:22:55 +0100268 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400269 struct pt_regs *regs = get_irq_regs();
270 int duration;
271
272 /* kick the hardlockup detector */
273 watchdog_interrupt_count();
274
275 /* kick the softlockup detector */
Christoph Lameter909ea962010-12-08 16:22:55 +0100276 wake_up_process(__this_cpu_read(softlockup_watchdog));
Don Zickus58687ac2010-05-07 17:11:44 -0400277
278 /* .. and repeat */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800279 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
Don Zickus58687ac2010-05-07 17:11:44 -0400280
281 if (touch_ts == 0) {
Christoph Lameter909ea962010-12-08 16:22:55 +0100282 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
Don Zickus58687ac2010-05-07 17:11:44 -0400283 /*
284 * If the time stamp was touched atomically
285 * make sure the scheduler tick is up to date.
286 */
Christoph Lameter909ea962010-12-08 16:22:55 +0100287 __this_cpu_write(softlockup_touch_sync, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400288 sched_clock_tick();
289 }
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500290
291 /* Clear the guest paused flag on watchdog reset */
292 kvm_check_and_clear_guest_paused();
Don Zickus58687ac2010-05-07 17:11:44 -0400293 __touch_watchdog();
294 return HRTIMER_RESTART;
295 }
296
297 /* check for a softlockup
298 * This is done by making sure a high priority task is
299 * being scheduled. The task touches the watchdog to
300 * indicate it is getting cpu time. If it hasn't then
301 * this is a good indication some task is hogging the cpu
302 */
Don Zickus26e09c62010-05-17 18:06:04 -0400303 duration = is_softlockup(touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400304 if (unlikely(duration)) {
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500305 /*
306 * If a virtual machine is stopped by the host it can look to
307 * the watchdog like a soft lockup, check to see if the host
308 * stopped the vm before we issue the warning
309 */
310 if (kvm_check_and_clear_guest_paused())
311 return HRTIMER_RESTART;
312
Don Zickus58687ac2010-05-07 17:11:44 -0400313 /* only warn once */
Christoph Lameter909ea962010-12-08 16:22:55 +0100314 if (__this_cpu_read(soft_watchdog_warn) == true)
Don Zickus58687ac2010-05-07 17:11:44 -0400315 return HRTIMER_RESTART;
316
Prarit Bhargavab0f4c4b2012-01-26 08:55:34 -0500317 printk(KERN_EMERG "BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
Don Zickus26e09c62010-05-17 18:06:04 -0400318 smp_processor_id(), duration,
Don Zickus58687ac2010-05-07 17:11:44 -0400319 current->comm, task_pid_nr(current));
320 print_modules();
321 print_irqtrace_events(current);
322 if (regs)
323 show_regs(regs);
324 else
325 dump_stack();
326
327 if (softlockup_panic)
328 panic("softlockup: hung tasks");
Christoph Lameter909ea962010-12-08 16:22:55 +0100329 __this_cpu_write(soft_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400330 } else
Christoph Lameter909ea962010-12-08 16:22:55 +0100331 __this_cpu_write(soft_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400332
333 return HRTIMER_RESTART;
334}
335
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000336static void watchdog_set_prio(unsigned int policy, unsigned int prio)
Don Zickus58687ac2010-05-07 17:11:44 -0400337{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000338 struct sched_param param = { .sched_priority = prio };
339
340 sched_setscheduler(current, policy, &param);
341}
342
343static void watchdog_enable(unsigned int cpu)
344{
Don Zickus26e09c62010-05-17 18:06:04 -0400345 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
Don Zickus58687ac2010-05-07 17:11:44 -0400346
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000347 if (!watchdog_enabled) {
348 kthread_park(current);
349 return;
350 }
351
352 /* Enable the perf event */
353 watchdog_nmi_enable(cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400354
355 /* kick off the timer for the hardlockup detector */
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000356 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
357 hrtimer->function = watchdog_timer_fn;
358
Don Zickus58687ac2010-05-07 17:11:44 -0400359 /* done here because hrtimer_start can only pin to smp_processor_id() */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800360 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
Don Zickus58687ac2010-05-07 17:11:44 -0400361 HRTIMER_MODE_REL_PINNED);
362
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000363 /* initialize timestamp */
364 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
365 __touch_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400366}
367
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000368static void watchdog_disable(unsigned int cpu)
369{
370 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
371
Thomas Gleixner8d451692012-12-04 18:59:34 +0100372 if (!watchdog_enabled)
373 return;
374
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000375 watchdog_set_prio(SCHED_NORMAL, 0);
376 hrtimer_cancel(hrtimer);
377 /* disable the perf event */
378 watchdog_nmi_disable(cpu);
379}
380
381static int watchdog_should_run(unsigned int cpu)
382{
383 return __this_cpu_read(hrtimer_interrupts) !=
384 __this_cpu_read(soft_lockup_hrtimer_cnt);
385}
386
387/*
388 * The watchdog thread function - touches the timestamp.
389 *
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800390 * It only runs once every sample_period seconds (4 seconds by
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000391 * default) to reset the softlockup timestamp. If this gets delayed
392 * for more than 2*watchdog_thresh seconds then the debug-printout
393 * triggers in watchdog_timer_fn().
394 */
395static void watchdog(unsigned int cpu)
396{
397 __this_cpu_write(soft_lockup_hrtimer_cnt,
398 __this_cpu_read(hrtimer_interrupts));
399 __touch_watchdog();
400}
Don Zickus58687ac2010-05-07 17:11:44 -0400401
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200402#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusa7027042012-06-13 09:35:48 -0400403/*
404 * People like the simple clean cpu node info on boot.
405 * Reduce the watchdog noise by only printing messages
406 * that are different from what cpu0 displayed.
407 */
408static unsigned long cpu0_err;
409
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000410static int watchdog_nmi_enable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400411{
412 struct perf_event_attr *wd_attr;
413 struct perf_event *event = per_cpu(watchdog_ev, cpu);
414
415 /* is it already setup and enabled? */
416 if (event && event->state > PERF_EVENT_STATE_OFF)
417 goto out;
418
419 /* it is setup but not enabled */
420 if (event != NULL)
421 goto out_enable;
422
Don Zickus58687ac2010-05-07 17:11:44 -0400423 wd_attr = &wd_hw_attr;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700424 wd_attr->sample_period = hw_nmi_get_sample_period(watchdog_thresh);
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400425
426 /* Try to register using hardware perf events */
Avi Kivity4dc0da82011-06-29 18:42:35 +0300427 event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL);
Don Zickusa7027042012-06-13 09:35:48 -0400428
429 /* save cpu0 error for future comparision */
430 if (cpu == 0 && IS_ERR(event))
431 cpu0_err = PTR_ERR(event);
432
Don Zickus58687ac2010-05-07 17:11:44 -0400433 if (!IS_ERR(event)) {
Don Zickusa7027042012-06-13 09:35:48 -0400434 /* only print for cpu0 or different than cpu0 */
435 if (cpu == 0 || cpu0_err)
436 pr_info("enabled on all CPUs, permanently consumes one hw-PMU counter.\n");
Don Zickus58687ac2010-05-07 17:11:44 -0400437 goto out_save;
438 }
439
Don Zickusa7027042012-06-13 09:35:48 -0400440 /* skip displaying the same error again */
441 if (cpu > 0 && (PTR_ERR(event) == cpu0_err))
442 return PTR_ERR(event);
Don Zickus5651f7f2011-02-09 14:02:33 -0500443
444 /* vary the KERN level based on the returned errno */
445 if (PTR_ERR(event) == -EOPNOTSUPP)
Andrew Morton45019802012-03-23 15:01:55 -0700446 pr_info("disabled (cpu%i): not supported (no LAPIC?)\n", cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500447 else if (PTR_ERR(event) == -ENOENT)
Andrew Morton45019802012-03-23 15:01:55 -0700448 pr_warning("disabled (cpu%i): hardware events not enabled\n",
449 cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500450 else
Andrew Morton45019802012-03-23 15:01:55 -0700451 pr_err("disabled (cpu%i): unable to create perf event: %ld\n",
452 cpu, PTR_ERR(event));
Akinobu Mitaeac24332010-08-31 23:00:08 -0400453 return PTR_ERR(event);
Don Zickus58687ac2010-05-07 17:11:44 -0400454
455 /* success path */
456out_save:
457 per_cpu(watchdog_ev, cpu) = event;
458out_enable:
459 perf_event_enable(per_cpu(watchdog_ev, cpu));
460out:
461 return 0;
462}
463
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000464static void watchdog_nmi_disable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400465{
466 struct perf_event *event = per_cpu(watchdog_ev, cpu);
467
468 if (event) {
469 perf_event_disable(event);
470 per_cpu(watchdog_ev, cpu) = NULL;
471
472 /* should be in cleanup, but blocks oprofile */
473 perf_event_release_kernel(event);
474 }
475 return;
476}
477#else
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000478static int watchdog_nmi_enable(unsigned int cpu) { return 0; }
479static void watchdog_nmi_disable(unsigned int cpu) { return; }
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200480#endif /* CONFIG_HARDLOCKUP_DETECTOR */
Don Zickus58687ac2010-05-07 17:11:44 -0400481
482/* prepare/enable/disable routines */
Vasily Averin4ff81952011-10-31 17:11:18 -0700483/* sysctl functions */
484#ifdef CONFIG_SYSCTL
Don Zickus58687ac2010-05-07 17:11:44 -0400485static void watchdog_enable_all_cpus(void)
486{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000487 unsigned int cpu;
Marcin Slusarz39735762011-01-28 11:00:32 -0500488
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000489 if (watchdog_disabled) {
490 watchdog_disabled = 0;
491 for_each_online_cpu(cpu)
492 kthread_unpark(per_cpu(softlockup_watchdog, cpu));
493 }
Don Zickus58687ac2010-05-07 17:11:44 -0400494}
495
496static void watchdog_disable_all_cpus(void)
497{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000498 unsigned int cpu;
Don Zickus58687ac2010-05-07 17:11:44 -0400499
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000500 if (!watchdog_disabled) {
501 watchdog_disabled = 1;
502 for_each_online_cpu(cpu)
503 kthread_park(per_cpu(softlockup_watchdog, cpu));
504 }
Don Zickus58687ac2010-05-07 17:11:44 -0400505}
506
Don Zickus58687ac2010-05-07 17:11:44 -0400507/*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700508 * proc handler for /proc/sys/kernel/nmi_watchdog,watchdog_thresh
Don Zickus58687ac2010-05-07 17:11:44 -0400509 */
510
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700511int proc_dowatchdog(struct ctl_table *table, int write,
512 void __user *buffer, size_t *lenp, loff_t *ppos)
Don Zickus58687ac2010-05-07 17:11:44 -0400513{
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700514 int ret;
Don Zickus58687ac2010-05-07 17:11:44 -0400515
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000516 if (watchdog_disabled < 0)
517 return -ENODEV;
518
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700519 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700520 if (ret || !write)
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000521 return ret;
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700522
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800523 set_sample_period();
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700524 if (watchdog_enabled && watchdog_thresh)
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700525 watchdog_enable_all_cpus();
526 else
527 watchdog_disable_all_cpus();
528
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700529 return ret;
Don Zickus58687ac2010-05-07 17:11:44 -0400530}
Don Zickus58687ac2010-05-07 17:11:44 -0400531#endif /* CONFIG_SYSCTL */
532
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000533static struct smp_hotplug_thread watchdog_threads = {
534 .store = &softlockup_watchdog,
535 .thread_should_run = watchdog_should_run,
536 .thread_fn = watchdog,
537 .thread_comm = "watchdog/%u",
538 .setup = watchdog_enable,
539 .park = watchdog_disable,
540 .unpark = watchdog_enable,
Don Zickus58687ac2010-05-07 17:11:44 -0400541};
542
Peter Zijlstra004417a2010-11-25 18:38:29 +0100543void __init lockup_detector_init(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400544{
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800545 set_sample_period();
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000546 if (smpboot_register_percpu_thread(&watchdog_threads)) {
547 pr_err("Failed to create watchdog threads, disabled\n");
548 watchdog_disabled = -ENODEV;
549 }
Don Zickus58687ac2010-05-07 17:11:44 -0400550}