xref: /openbmc/linux/kernel/watchdog.c (revision 5651f7f4)
158687acbSDon Zickus /*
258687acbSDon Zickus  * Detect hard and soft lockups on a system
358687acbSDon Zickus  *
458687acbSDon Zickus  * started by Don Zickus, Copyright (C) 2010 Red Hat, Inc.
558687acbSDon Zickus  *
658687acbSDon Zickus  * this code detects hard lockups: incidents in where on a CPU
758687acbSDon Zickus  * the kernel does not respond to anything except NMI.
858687acbSDon Zickus  *
958687acbSDon Zickus  * Note: Most of this code is borrowed heavily from softlockup.c,
1058687acbSDon Zickus  * so thanks to Ingo for the initial implementation.
1158687acbSDon Zickus  * Some chunks also taken from arch/x86/kernel/apic/nmi.c, thanks
1258687acbSDon Zickus  * to those contributors as well.
1358687acbSDon Zickus  */
1458687acbSDon Zickus 
1558687acbSDon Zickus #include <linux/mm.h>
1658687acbSDon Zickus #include <linux/cpu.h>
1758687acbSDon Zickus #include <linux/nmi.h>
1858687acbSDon Zickus #include <linux/init.h>
1958687acbSDon Zickus #include <linux/delay.h>
2058687acbSDon Zickus #include <linux/freezer.h>
2158687acbSDon Zickus #include <linux/kthread.h>
2258687acbSDon Zickus #include <linux/lockdep.h>
2358687acbSDon Zickus #include <linux/notifier.h>
2458687acbSDon Zickus #include <linux/module.h>
2558687acbSDon Zickus #include <linux/sysctl.h>
2658687acbSDon Zickus 
2758687acbSDon Zickus #include <asm/irq_regs.h>
2858687acbSDon Zickus #include <linux/perf_event.h>
2958687acbSDon Zickus 
304135038aSMarcin Slusarz int watchdog_enabled = 1;
3158687acbSDon Zickus int __read_mostly softlockup_thresh = 60;
3258687acbSDon Zickus 
3358687acbSDon Zickus static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
3458687acbSDon Zickus static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
3558687acbSDon Zickus static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
3658687acbSDon Zickus static DEFINE_PER_CPU(bool, softlockup_touch_sync);
3758687acbSDon Zickus static DEFINE_PER_CPU(bool, soft_watchdog_warn);
3823637d47SFrederic Weisbecker #ifdef CONFIG_HARDLOCKUP_DETECTOR
39cafcd80dSDon Zickus static DEFINE_PER_CPU(bool, hard_watchdog_warn);
40cafcd80dSDon Zickus static DEFINE_PER_CPU(bool, watchdog_nmi_touch);
4158687acbSDon Zickus static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
4258687acbSDon Zickus static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
4358687acbSDon Zickus static DEFINE_PER_CPU(struct perf_event *, watchdog_ev);
4458687acbSDon Zickus #endif
4558687acbSDon Zickus 
4658687acbSDon Zickus /* boot commands */
4758687acbSDon Zickus /*
4858687acbSDon Zickus  * Should we panic when a soft-lockup or hard-lockup occurs:
4958687acbSDon Zickus  */
5023637d47SFrederic Weisbecker #ifdef CONFIG_HARDLOCKUP_DETECTOR
5158687acbSDon Zickus static int hardlockup_panic;
5258687acbSDon Zickus 
5358687acbSDon Zickus static int __init hardlockup_panic_setup(char *str)
5458687acbSDon Zickus {
5558687acbSDon Zickus 	if (!strncmp(str, "panic", 5))
5658687acbSDon Zickus 		hardlockup_panic = 1;
575dc30558SDon Zickus 	else if (!strncmp(str, "0", 1))
584135038aSMarcin Slusarz 		watchdog_enabled = 0;
5958687acbSDon Zickus 	return 1;
6058687acbSDon Zickus }
6158687acbSDon Zickus __setup("nmi_watchdog=", hardlockup_panic_setup);
6258687acbSDon Zickus #endif
6358687acbSDon Zickus 
6458687acbSDon Zickus unsigned int __read_mostly softlockup_panic =
6558687acbSDon Zickus 			CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
6658687acbSDon Zickus 
6758687acbSDon Zickus static int __init softlockup_panic_setup(char *str)
6858687acbSDon Zickus {
6958687acbSDon Zickus 	softlockup_panic = simple_strtoul(str, NULL, 0);
7058687acbSDon Zickus 
7158687acbSDon Zickus 	return 1;
7258687acbSDon Zickus }
7358687acbSDon Zickus __setup("softlockup_panic=", softlockup_panic_setup);
7458687acbSDon Zickus 
7558687acbSDon Zickus static int __init nowatchdog_setup(char *str)
7658687acbSDon Zickus {
774135038aSMarcin Slusarz 	watchdog_enabled = 0;
7858687acbSDon Zickus 	return 1;
7958687acbSDon Zickus }
8058687acbSDon Zickus __setup("nowatchdog", nowatchdog_setup);
8158687acbSDon Zickus 
8258687acbSDon Zickus /* deprecated */
8358687acbSDon Zickus static int __init nosoftlockup_setup(char *str)
8458687acbSDon Zickus {
854135038aSMarcin Slusarz 	watchdog_enabled = 0;
8658687acbSDon Zickus 	return 1;
8758687acbSDon Zickus }
8858687acbSDon Zickus __setup("nosoftlockup", nosoftlockup_setup);
8958687acbSDon Zickus /*  */
9058687acbSDon Zickus 
9158687acbSDon Zickus 
9258687acbSDon Zickus /*
9358687acbSDon Zickus  * Returns seconds, approximately.  We don't need nanosecond
9458687acbSDon Zickus  * resolution, and we don't need to waste time with a big divide when
9558687acbSDon Zickus  * 2^30ns == 1.074s.
9658687acbSDon Zickus  */
9758687acbSDon Zickus static unsigned long get_timestamp(int this_cpu)
9858687acbSDon Zickus {
9958687acbSDon Zickus 	return cpu_clock(this_cpu) >> 30LL;  /* 2^30 ~= 10^9 */
10058687acbSDon Zickus }
10158687acbSDon Zickus 
10258687acbSDon Zickus static unsigned long get_sample_period(void)
10358687acbSDon Zickus {
10458687acbSDon Zickus 	/*
10558687acbSDon Zickus 	 * convert softlockup_thresh from seconds to ns
10658687acbSDon Zickus 	 * the divide by 5 is to give hrtimer 5 chances to
10758687acbSDon Zickus 	 * increment before the hardlockup detector generates
10858687acbSDon Zickus 	 * a warning
10958687acbSDon Zickus 	 */
11058687acbSDon Zickus 	return softlockup_thresh / 5 * NSEC_PER_SEC;
11158687acbSDon Zickus }
11258687acbSDon Zickus 
11358687acbSDon Zickus /* Commands for resetting the watchdog */
11458687acbSDon Zickus static void __touch_watchdog(void)
11558687acbSDon Zickus {
11626e09c6eSDon Zickus 	int this_cpu = smp_processor_id();
11758687acbSDon Zickus 
118909ea964SChristoph Lameter 	__this_cpu_write(watchdog_touch_ts, get_timestamp(this_cpu));
11958687acbSDon Zickus }
12058687acbSDon Zickus 
121332fbdbcSDon Zickus void touch_softlockup_watchdog(void)
12258687acbSDon Zickus {
123909ea964SChristoph Lameter 	__this_cpu_write(watchdog_touch_ts, 0);
12458687acbSDon Zickus }
1250167c781SIngo Molnar EXPORT_SYMBOL(touch_softlockup_watchdog);
12658687acbSDon Zickus 
127332fbdbcSDon Zickus void touch_all_softlockup_watchdogs(void)
12858687acbSDon Zickus {
12958687acbSDon Zickus 	int cpu;
13058687acbSDon Zickus 
13158687acbSDon Zickus 	/*
13258687acbSDon Zickus 	 * this is done lockless
13358687acbSDon Zickus 	 * do we care if a 0 races with a timestamp?
13458687acbSDon Zickus 	 * all it means is the softlock check starts one cycle later
13558687acbSDon Zickus 	 */
13658687acbSDon Zickus 	for_each_online_cpu(cpu)
13758687acbSDon Zickus 		per_cpu(watchdog_touch_ts, cpu) = 0;
13858687acbSDon Zickus }
13958687acbSDon Zickus 
140cafcd80dSDon Zickus #ifdef CONFIG_HARDLOCKUP_DETECTOR
14158687acbSDon Zickus void touch_nmi_watchdog(void)
14258687acbSDon Zickus {
14368d3f1d8SDon Zickus 	if (watchdog_enabled) {
14468d3f1d8SDon Zickus 		unsigned cpu;
14568d3f1d8SDon Zickus 
14668d3f1d8SDon Zickus 		for_each_present_cpu(cpu) {
14768d3f1d8SDon Zickus 			if (per_cpu(watchdog_nmi_touch, cpu) != true)
14868d3f1d8SDon Zickus 				per_cpu(watchdog_nmi_touch, cpu) = true;
14968d3f1d8SDon Zickus 		}
15068d3f1d8SDon Zickus 	}
151332fbdbcSDon Zickus 	touch_softlockup_watchdog();
15258687acbSDon Zickus }
15358687acbSDon Zickus EXPORT_SYMBOL(touch_nmi_watchdog);
15458687acbSDon Zickus 
155cafcd80dSDon Zickus #endif
156cafcd80dSDon Zickus 
15758687acbSDon Zickus void touch_softlockup_watchdog_sync(void)
15858687acbSDon Zickus {
15958687acbSDon Zickus 	__raw_get_cpu_var(softlockup_touch_sync) = true;
16058687acbSDon Zickus 	__raw_get_cpu_var(watchdog_touch_ts) = 0;
16158687acbSDon Zickus }
16258687acbSDon Zickus 
16323637d47SFrederic Weisbecker #ifdef CONFIG_HARDLOCKUP_DETECTOR
16458687acbSDon Zickus /* watchdog detector functions */
16526e09c6eSDon Zickus static int is_hardlockup(void)
16658687acbSDon Zickus {
167909ea964SChristoph Lameter 	unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
16858687acbSDon Zickus 
169909ea964SChristoph Lameter 	if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
17058687acbSDon Zickus 		return 1;
17158687acbSDon Zickus 
172909ea964SChristoph Lameter 	__this_cpu_write(hrtimer_interrupts_saved, hrint);
17358687acbSDon Zickus 	return 0;
17458687acbSDon Zickus }
17558687acbSDon Zickus #endif
17658687acbSDon Zickus 
17726e09c6eSDon Zickus static int is_softlockup(unsigned long touch_ts)
17858687acbSDon Zickus {
17926e09c6eSDon Zickus 	unsigned long now = get_timestamp(smp_processor_id());
18058687acbSDon Zickus 
18158687acbSDon Zickus 	/* Warn about unreasonable delays: */
18258687acbSDon Zickus 	if (time_after(now, touch_ts + softlockup_thresh))
18358687acbSDon Zickus 		return now - touch_ts;
18458687acbSDon Zickus 
18558687acbSDon Zickus 	return 0;
18658687acbSDon Zickus }
18758687acbSDon Zickus 
18823637d47SFrederic Weisbecker #ifdef CONFIG_HARDLOCKUP_DETECTOR
18958687acbSDon Zickus static struct perf_event_attr wd_hw_attr = {
19058687acbSDon Zickus 	.type		= PERF_TYPE_HARDWARE,
19158687acbSDon Zickus 	.config		= PERF_COUNT_HW_CPU_CYCLES,
19258687acbSDon Zickus 	.size		= sizeof(struct perf_event_attr),
19358687acbSDon Zickus 	.pinned		= 1,
19458687acbSDon Zickus 	.disabled	= 1,
19558687acbSDon Zickus };
19658687acbSDon Zickus 
19758687acbSDon Zickus /* Callback function for perf event subsystem */
198277b1998SLin Ming static void watchdog_overflow_callback(struct perf_event *event, int nmi,
19958687acbSDon Zickus 		 struct perf_sample_data *data,
20058687acbSDon Zickus 		 struct pt_regs *regs)
20158687acbSDon Zickus {
202c6db67cdSPeter Zijlstra 	/* Ensure the watchdog never gets throttled */
203c6db67cdSPeter Zijlstra 	event->hw.interrupts = 0;
204c6db67cdSPeter Zijlstra 
205909ea964SChristoph Lameter 	if (__this_cpu_read(watchdog_nmi_touch) == true) {
206909ea964SChristoph Lameter 		__this_cpu_write(watchdog_nmi_touch, false);
20758687acbSDon Zickus 		return;
20858687acbSDon Zickus 	}
20958687acbSDon Zickus 
21058687acbSDon Zickus 	/* check for a hardlockup
21158687acbSDon Zickus 	 * This is done by making sure our timer interrupt
21258687acbSDon Zickus 	 * is incrementing.  The timer interrupt should have
21358687acbSDon Zickus 	 * fired multiple times before we overflow'd.  If it hasn't
21458687acbSDon Zickus 	 * then this is a good indication the cpu is stuck
21558687acbSDon Zickus 	 */
21626e09c6eSDon Zickus 	if (is_hardlockup()) {
21726e09c6eSDon Zickus 		int this_cpu = smp_processor_id();
21826e09c6eSDon Zickus 
21958687acbSDon Zickus 		/* only print hardlockups once */
220909ea964SChristoph Lameter 		if (__this_cpu_read(hard_watchdog_warn) == true)
22158687acbSDon Zickus 			return;
22258687acbSDon Zickus 
22358687acbSDon Zickus 		if (hardlockup_panic)
22458687acbSDon Zickus 			panic("Watchdog detected hard LOCKUP on cpu %d", this_cpu);
22558687acbSDon Zickus 		else
22658687acbSDon Zickus 			WARN(1, "Watchdog detected hard LOCKUP on cpu %d", this_cpu);
22758687acbSDon Zickus 
228909ea964SChristoph Lameter 		__this_cpu_write(hard_watchdog_warn, true);
22958687acbSDon Zickus 		return;
23058687acbSDon Zickus 	}
23158687acbSDon Zickus 
232909ea964SChristoph Lameter 	__this_cpu_write(hard_watchdog_warn, false);
23358687acbSDon Zickus 	return;
23458687acbSDon Zickus }
23558687acbSDon Zickus static void watchdog_interrupt_count(void)
23658687acbSDon Zickus {
237909ea964SChristoph Lameter 	__this_cpu_inc(hrtimer_interrupts);
23858687acbSDon Zickus }
23958687acbSDon Zickus #else
24058687acbSDon Zickus static inline void watchdog_interrupt_count(void) { return; }
24123637d47SFrederic Weisbecker #endif /* CONFIG_HARDLOCKUP_DETECTOR */
24258687acbSDon Zickus 
24358687acbSDon Zickus /* watchdog kicker functions */
24458687acbSDon Zickus static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
24558687acbSDon Zickus {
246909ea964SChristoph Lameter 	unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
24758687acbSDon Zickus 	struct pt_regs *regs = get_irq_regs();
24858687acbSDon Zickus 	int duration;
24958687acbSDon Zickus 
25058687acbSDon Zickus 	/* kick the hardlockup detector */
25158687acbSDon Zickus 	watchdog_interrupt_count();
25258687acbSDon Zickus 
25358687acbSDon Zickus 	/* kick the softlockup detector */
254909ea964SChristoph Lameter 	wake_up_process(__this_cpu_read(softlockup_watchdog));
25558687acbSDon Zickus 
25658687acbSDon Zickus 	/* .. and repeat */
25758687acbSDon Zickus 	hrtimer_forward_now(hrtimer, ns_to_ktime(get_sample_period()));
25858687acbSDon Zickus 
25958687acbSDon Zickus 	if (touch_ts == 0) {
260909ea964SChristoph Lameter 		if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
26158687acbSDon Zickus 			/*
26258687acbSDon Zickus 			 * If the time stamp was touched atomically
26358687acbSDon Zickus 			 * make sure the scheduler tick is up to date.
26458687acbSDon Zickus 			 */
265909ea964SChristoph Lameter 			__this_cpu_write(softlockup_touch_sync, false);
26658687acbSDon Zickus 			sched_clock_tick();
26758687acbSDon Zickus 		}
26858687acbSDon Zickus 		__touch_watchdog();
26958687acbSDon Zickus 		return HRTIMER_RESTART;
27058687acbSDon Zickus 	}
27158687acbSDon Zickus 
27258687acbSDon Zickus 	/* check for a softlockup
27358687acbSDon Zickus 	 * This is done by making sure a high priority task is
27458687acbSDon Zickus 	 * being scheduled.  The task touches the watchdog to
27558687acbSDon Zickus 	 * indicate it is getting cpu time.  If it hasn't then
27658687acbSDon Zickus 	 * this is a good indication some task is hogging the cpu
27758687acbSDon Zickus 	 */
27826e09c6eSDon Zickus 	duration = is_softlockup(touch_ts);
27958687acbSDon Zickus 	if (unlikely(duration)) {
28058687acbSDon Zickus 		/* only warn once */
281909ea964SChristoph Lameter 		if (__this_cpu_read(soft_watchdog_warn) == true)
28258687acbSDon Zickus 			return HRTIMER_RESTART;
28358687acbSDon Zickus 
28458687acbSDon Zickus 		printk(KERN_ERR "BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
28526e09c6eSDon Zickus 			smp_processor_id(), duration,
28658687acbSDon Zickus 			current->comm, task_pid_nr(current));
28758687acbSDon Zickus 		print_modules();
28858687acbSDon Zickus 		print_irqtrace_events(current);
28958687acbSDon Zickus 		if (regs)
29058687acbSDon Zickus 			show_regs(regs);
29158687acbSDon Zickus 		else
29258687acbSDon Zickus 			dump_stack();
29358687acbSDon Zickus 
29458687acbSDon Zickus 		if (softlockup_panic)
29558687acbSDon Zickus 			panic("softlockup: hung tasks");
296909ea964SChristoph Lameter 		__this_cpu_write(soft_watchdog_warn, true);
29758687acbSDon Zickus 	} else
298909ea964SChristoph Lameter 		__this_cpu_write(soft_watchdog_warn, false);
29958687acbSDon Zickus 
30058687acbSDon Zickus 	return HRTIMER_RESTART;
30158687acbSDon Zickus }
30258687acbSDon Zickus 
30358687acbSDon Zickus 
30458687acbSDon Zickus /*
30558687acbSDon Zickus  * The watchdog thread - touches the timestamp.
30658687acbSDon Zickus  */
30726e09c6eSDon Zickus static int watchdog(void *unused)
30858687acbSDon Zickus {
309fe7de49fSKOSAKI Motohiro 	static struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
31026e09c6eSDon Zickus 	struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
31158687acbSDon Zickus 
31258687acbSDon Zickus 	sched_setscheduler(current, SCHED_FIFO, &param);
31358687acbSDon Zickus 
31458687acbSDon Zickus 	/* initialize timestamp */
31558687acbSDon Zickus 	__touch_watchdog();
31658687acbSDon Zickus 
31758687acbSDon Zickus 	/* kick off the timer for the hardlockup detector */
31858687acbSDon Zickus 	/* done here because hrtimer_start can only pin to smp_processor_id() */
31958687acbSDon Zickus 	hrtimer_start(hrtimer, ns_to_ktime(get_sample_period()),
32058687acbSDon Zickus 		      HRTIMER_MODE_REL_PINNED);
32158687acbSDon Zickus 
32258687acbSDon Zickus 	set_current_state(TASK_INTERRUPTIBLE);
32358687acbSDon Zickus 	/*
32458687acbSDon Zickus 	 * Run briefly once per second to reset the softlockup timestamp.
32558687acbSDon Zickus 	 * If this gets delayed for more than 60 seconds then the
32626e09c6eSDon Zickus 	 * debug-printout triggers in watchdog_timer_fn().
32758687acbSDon Zickus 	 */
32858687acbSDon Zickus 	while (!kthread_should_stop()) {
32958687acbSDon Zickus 		__touch_watchdog();
33058687acbSDon Zickus 		schedule();
33158687acbSDon Zickus 
33258687acbSDon Zickus 		if (kthread_should_stop())
33358687acbSDon Zickus 			break;
33458687acbSDon Zickus 
33558687acbSDon Zickus 		set_current_state(TASK_INTERRUPTIBLE);
33658687acbSDon Zickus 	}
33758687acbSDon Zickus 	__set_current_state(TASK_RUNNING);
33858687acbSDon Zickus 
33958687acbSDon Zickus 	return 0;
34058687acbSDon Zickus }
34158687acbSDon Zickus 
34258687acbSDon Zickus 
34323637d47SFrederic Weisbecker #ifdef CONFIG_HARDLOCKUP_DETECTOR
34458687acbSDon Zickus static int watchdog_nmi_enable(int cpu)
34558687acbSDon Zickus {
34658687acbSDon Zickus 	struct perf_event_attr *wd_attr;
34758687acbSDon Zickus 	struct perf_event *event = per_cpu(watchdog_ev, cpu);
34858687acbSDon Zickus 
34958687acbSDon Zickus 	/* is it already setup and enabled? */
35058687acbSDon Zickus 	if (event && event->state > PERF_EVENT_STATE_OFF)
35158687acbSDon Zickus 		goto out;
35258687acbSDon Zickus 
35358687acbSDon Zickus 	/* it is setup but not enabled */
35458687acbSDon Zickus 	if (event != NULL)
35558687acbSDon Zickus 		goto out_enable;
35658687acbSDon Zickus 
35758687acbSDon Zickus 	/* Try to register using hardware perf events */
35858687acbSDon Zickus 	wd_attr = &wd_hw_attr;
35958687acbSDon Zickus 	wd_attr->sample_period = hw_nmi_get_sample_period();
36038a81da2SMatt Helsley 	event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback);
36158687acbSDon Zickus 	if (!IS_ERR(event)) {
36258687acbSDon Zickus 		printk(KERN_INFO "NMI watchdog enabled, takes one hw-pmu counter.\n");
36358687acbSDon Zickus 		goto out_save;
36458687acbSDon Zickus 	}
36558687acbSDon Zickus 
3665651f7f4SDon Zickus 
3675651f7f4SDon Zickus 	/* vary the KERN level based on the returned errno */
3685651f7f4SDon Zickus 	if (PTR_ERR(event) == -EOPNOTSUPP)
3695651f7f4SDon Zickus 		printk(KERN_INFO "NMI watchdog disabled (cpu%i): not supported (no LAPIC?)\n", cpu);
3705651f7f4SDon Zickus 	else if (PTR_ERR(event) == -ENOENT)
3715651f7f4SDon Zickus 		printk(KERN_WARNING "NMI watchdog disabled (cpu%i): hardware events not enabled\n", cpu);
3725651f7f4SDon Zickus 	else
3735651f7f4SDon Zickus 		printk(KERN_ERR "NMI watchdog disabled (cpu%i): unable to create perf event: %ld\n", cpu, PTR_ERR(event));
374eac24335SAkinobu Mita 	return PTR_ERR(event);
37558687acbSDon Zickus 
37658687acbSDon Zickus 	/* success path */
37758687acbSDon Zickus out_save:
37858687acbSDon Zickus 	per_cpu(watchdog_ev, cpu) = event;
37958687acbSDon Zickus out_enable:
38058687acbSDon Zickus 	perf_event_enable(per_cpu(watchdog_ev, cpu));
38158687acbSDon Zickus out:
38258687acbSDon Zickus 	return 0;
38358687acbSDon Zickus }
38458687acbSDon Zickus 
38558687acbSDon Zickus static void watchdog_nmi_disable(int cpu)
38658687acbSDon Zickus {
38758687acbSDon Zickus 	struct perf_event *event = per_cpu(watchdog_ev, cpu);
38858687acbSDon Zickus 
38958687acbSDon Zickus 	if (event) {
39058687acbSDon Zickus 		perf_event_disable(event);
39158687acbSDon Zickus 		per_cpu(watchdog_ev, cpu) = NULL;
39258687acbSDon Zickus 
39358687acbSDon Zickus 		/* should be in cleanup, but blocks oprofile */
39458687acbSDon Zickus 		perf_event_release_kernel(event);
39558687acbSDon Zickus 	}
39658687acbSDon Zickus 	return;
39758687acbSDon Zickus }
39858687acbSDon Zickus #else
39958687acbSDon Zickus static int watchdog_nmi_enable(int cpu) { return 0; }
40058687acbSDon Zickus static void watchdog_nmi_disable(int cpu) { return; }
40123637d47SFrederic Weisbecker #endif /* CONFIG_HARDLOCKUP_DETECTOR */
40258687acbSDon Zickus 
40358687acbSDon Zickus /* prepare/enable/disable routines */
40458687acbSDon Zickus static int watchdog_prepare_cpu(int cpu)
40558687acbSDon Zickus {
40658687acbSDon Zickus 	struct hrtimer *hrtimer = &per_cpu(watchdog_hrtimer, cpu);
40758687acbSDon Zickus 
40858687acbSDon Zickus 	WARN_ON(per_cpu(softlockup_watchdog, cpu));
40958687acbSDon Zickus 	hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
41058687acbSDon Zickus 	hrtimer->function = watchdog_timer_fn;
41158687acbSDon Zickus 
41258687acbSDon Zickus 	return 0;
41358687acbSDon Zickus }
41458687acbSDon Zickus 
41558687acbSDon Zickus static int watchdog_enable(int cpu)
41658687acbSDon Zickus {
41758687acbSDon Zickus 	struct task_struct *p = per_cpu(softlockup_watchdog, cpu);
418eac24335SAkinobu Mita 	int err;
41958687acbSDon Zickus 
42058687acbSDon Zickus 	/* enable the perf event */
421eac24335SAkinobu Mita 	err = watchdog_nmi_enable(cpu);
422eac24335SAkinobu Mita 	if (err)
423eac24335SAkinobu Mita 		return err;
42458687acbSDon Zickus 
42558687acbSDon Zickus 	/* create the watchdog thread */
42658687acbSDon Zickus 	if (!p) {
42758687acbSDon Zickus 		p = kthread_create(watchdog, (void *)(unsigned long)cpu, "watchdog/%d", cpu);
42858687acbSDon Zickus 		if (IS_ERR(p)) {
42958687acbSDon Zickus 			printk(KERN_ERR "softlockup watchdog for %i failed\n", cpu);
430eac24335SAkinobu Mita 			return PTR_ERR(p);
43158687acbSDon Zickus 		}
43258687acbSDon Zickus 		kthread_bind(p, cpu);
43358687acbSDon Zickus 		per_cpu(watchdog_touch_ts, cpu) = 0;
43458687acbSDon Zickus 		per_cpu(softlockup_watchdog, cpu) = p;
43558687acbSDon Zickus 		wake_up_process(p);
43658687acbSDon Zickus 	}
43758687acbSDon Zickus 
43858687acbSDon Zickus 	return 0;
43958687acbSDon Zickus }
44058687acbSDon Zickus 
44158687acbSDon Zickus static void watchdog_disable(int cpu)
44258687acbSDon Zickus {
44358687acbSDon Zickus 	struct task_struct *p = per_cpu(softlockup_watchdog, cpu);
44458687acbSDon Zickus 	struct hrtimer *hrtimer = &per_cpu(watchdog_hrtimer, cpu);
44558687acbSDon Zickus 
44658687acbSDon Zickus 	/*
44758687acbSDon Zickus 	 * cancel the timer first to stop incrementing the stats
44858687acbSDon Zickus 	 * and waking up the kthread
44958687acbSDon Zickus 	 */
45058687acbSDon Zickus 	hrtimer_cancel(hrtimer);
45158687acbSDon Zickus 
45258687acbSDon Zickus 	/* disable the perf event */
45358687acbSDon Zickus 	watchdog_nmi_disable(cpu);
45458687acbSDon Zickus 
45558687acbSDon Zickus 	/* stop the watchdog thread */
45658687acbSDon Zickus 	if (p) {
45758687acbSDon Zickus 		per_cpu(softlockup_watchdog, cpu) = NULL;
45858687acbSDon Zickus 		kthread_stop(p);
45958687acbSDon Zickus 	}
46058687acbSDon Zickus }
46158687acbSDon Zickus 
46258687acbSDon Zickus static void watchdog_enable_all_cpus(void)
46358687acbSDon Zickus {
46458687acbSDon Zickus 	int cpu;
46539735766SMarcin Slusarz 
46639735766SMarcin Slusarz 	watchdog_enabled = 0;
46758687acbSDon Zickus 
46858687acbSDon Zickus 	for_each_online_cpu(cpu)
46939735766SMarcin Slusarz 		if (!watchdog_enable(cpu))
47039735766SMarcin Slusarz 			/* if any cpu succeeds, watchdog is considered
47139735766SMarcin Slusarz 			   enabled for the system */
47239735766SMarcin Slusarz 			watchdog_enabled = 1;
47358687acbSDon Zickus 
47439735766SMarcin Slusarz 	if (!watchdog_enabled)
47558687acbSDon Zickus 		printk(KERN_ERR "watchdog: failed to be enabled on some cpus\n");
47658687acbSDon Zickus 
47758687acbSDon Zickus }
47858687acbSDon Zickus 
47958687acbSDon Zickus static void watchdog_disable_all_cpus(void)
48058687acbSDon Zickus {
48158687acbSDon Zickus 	int cpu;
48258687acbSDon Zickus 
48358687acbSDon Zickus 	for_each_online_cpu(cpu)
48458687acbSDon Zickus 		watchdog_disable(cpu);
48558687acbSDon Zickus 
48658687acbSDon Zickus 	/* if all watchdogs are disabled, then they are disabled for the system */
48758687acbSDon Zickus 	watchdog_enabled = 0;
48858687acbSDon Zickus }
48958687acbSDon Zickus 
49058687acbSDon Zickus 
49158687acbSDon Zickus /* sysctl functions */
49258687acbSDon Zickus #ifdef CONFIG_SYSCTL
49358687acbSDon Zickus /*
49458687acbSDon Zickus  * proc handler for /proc/sys/kernel/nmi_watchdog
49558687acbSDon Zickus  */
49658687acbSDon Zickus 
49758687acbSDon Zickus int proc_dowatchdog_enabled(struct ctl_table *table, int write,
49858687acbSDon Zickus 		     void __user *buffer, size_t *length, loff_t *ppos)
49958687acbSDon Zickus {
50058687acbSDon Zickus 	proc_dointvec(table, write, buffer, length, ppos);
50158687acbSDon Zickus 
5029ffdc6c3SMarcin Slusarz 	if (write) {
50358687acbSDon Zickus 		if (watchdog_enabled)
50458687acbSDon Zickus 			watchdog_enable_all_cpus();
50558687acbSDon Zickus 		else
50658687acbSDon Zickus 			watchdog_disable_all_cpus();
5079ffdc6c3SMarcin Slusarz 	}
50858687acbSDon Zickus 	return 0;
50958687acbSDon Zickus }
51058687acbSDon Zickus 
51158687acbSDon Zickus int proc_dowatchdog_thresh(struct ctl_table *table, int write,
51258687acbSDon Zickus 			     void __user *buffer,
51358687acbSDon Zickus 			     size_t *lenp, loff_t *ppos)
51458687acbSDon Zickus {
51558687acbSDon Zickus 	return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
51658687acbSDon Zickus }
51758687acbSDon Zickus #endif /* CONFIG_SYSCTL */
51858687acbSDon Zickus 
51958687acbSDon Zickus 
52058687acbSDon Zickus /*
52158687acbSDon Zickus  * Create/destroy watchdog threads as CPUs come and go:
52258687acbSDon Zickus  */
52358687acbSDon Zickus static int __cpuinit
52458687acbSDon Zickus cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
52558687acbSDon Zickus {
52658687acbSDon Zickus 	int hotcpu = (unsigned long)hcpu;
527eac24335SAkinobu Mita 	int err = 0;
52858687acbSDon Zickus 
52958687acbSDon Zickus 	switch (action) {
53058687acbSDon Zickus 	case CPU_UP_PREPARE:
53158687acbSDon Zickus 	case CPU_UP_PREPARE_FROZEN:
532eac24335SAkinobu Mita 		err = watchdog_prepare_cpu(hotcpu);
53358687acbSDon Zickus 		break;
53458687acbSDon Zickus 	case CPU_ONLINE:
53558687acbSDon Zickus 	case CPU_ONLINE_FROZEN:
5364135038aSMarcin Slusarz 		if (watchdog_enabled)
537eac24335SAkinobu Mita 			err = watchdog_enable(hotcpu);
53858687acbSDon Zickus 		break;
53958687acbSDon Zickus #ifdef CONFIG_HOTPLUG_CPU
54058687acbSDon Zickus 	case CPU_UP_CANCELED:
54158687acbSDon Zickus 	case CPU_UP_CANCELED_FROZEN:
54258687acbSDon Zickus 		watchdog_disable(hotcpu);
54358687acbSDon Zickus 		break;
54458687acbSDon Zickus 	case CPU_DEAD:
54558687acbSDon Zickus 	case CPU_DEAD_FROZEN:
54658687acbSDon Zickus 		watchdog_disable(hotcpu);
54758687acbSDon Zickus 		break;
54858687acbSDon Zickus #endif /* CONFIG_HOTPLUG_CPU */
54958687acbSDon Zickus 	}
550eac24335SAkinobu Mita 	return notifier_from_errno(err);
55158687acbSDon Zickus }
55258687acbSDon Zickus 
55358687acbSDon Zickus static struct notifier_block __cpuinitdata cpu_nfb = {
55458687acbSDon Zickus 	.notifier_call = cpu_callback
55558687acbSDon Zickus };
55658687acbSDon Zickus 
557004417a6SPeter Zijlstra void __init lockup_detector_init(void)
55858687acbSDon Zickus {
55958687acbSDon Zickus 	void *cpu = (void *)(long)smp_processor_id();
56058687acbSDon Zickus 	int err;
56158687acbSDon Zickus 
56258687acbSDon Zickus 	err = cpu_callback(&cpu_nfb, CPU_UP_PREPARE, cpu);
563eac24335SAkinobu Mita 	WARN_ON(notifier_to_errno(err));
56458687acbSDon Zickus 
56558687acbSDon Zickus 	cpu_callback(&cpu_nfb, CPU_ONLINE, cpu);
56658687acbSDon Zickus 	register_cpu_notifier(&cpu_nfb);
56758687acbSDon Zickus 
568004417a6SPeter Zijlstra 	return;
56958687acbSDon Zickus }
570