blob: 81d43caa2012feed6eff4a95f3cd6b1369483fe5 [file] [log] [blame]
Ingo Molnar8446f1d2005-09-06 15:16:27 -07001/*
2 * Detect Soft Lockups
3 *
Ingo Molnar6687a972006-03-24 03:18:41 -08004 * started by Ingo Molnar, Copyright (C) 2005, 2006 Red Hat, Inc.
Ingo Molnar8446f1d2005-09-06 15:16:27 -07005 *
6 * this code detects soft lockups: incidents in where on a CPU
7 * the kernel does not reschedule for 10 seconds or more.
8 */
Ingo Molnar8446f1d2005-09-06 15:16:27 -07009#include <linux/mm.h>
10#include <linux/cpu.h>
11#include <linux/init.h>
12#include <linux/delay.h>
13#include <linux/kthread.h>
14#include <linux/notifier.h>
15#include <linux/module.h>
16
17static DEFINE_SPINLOCK(print_lock);
18
Ingo Molnar6687a972006-03-24 03:18:41 -080019static DEFINE_PER_CPU(unsigned long, touch_timestamp);
20static DEFINE_PER_CPU(unsigned long, print_timestamp);
Ingo Molnar8446f1d2005-09-06 15:16:27 -070021static DEFINE_PER_CPU(struct task_struct *, watchdog_task);
22
23static int did_panic = 0;
Ingo Molnar6687a972006-03-24 03:18:41 -080024
25static int
26softlock_panic(struct notifier_block *this, unsigned long event, void *ptr)
Ingo Molnar8446f1d2005-09-06 15:16:27 -070027{
28 did_panic = 1;
29
30 return NOTIFY_DONE;
31}
32
33static struct notifier_block panic_block = {
34 .notifier_call = softlock_panic,
35};
36
37void touch_softlockup_watchdog(void)
38{
Paul Mackerrasbfe5d832006-06-25 05:47:14 -070039 __raw_get_cpu_var(touch_timestamp) = jiffies;
Ingo Molnar8446f1d2005-09-06 15:16:27 -070040}
41EXPORT_SYMBOL(touch_softlockup_watchdog);
42
43/*
44 * This callback runs from the timer interrupt, and checks
45 * whether the watchdog thread has hung or not:
46 */
Ingo Molnar6687a972006-03-24 03:18:41 -080047void softlockup_tick(void)
Ingo Molnar8446f1d2005-09-06 15:16:27 -070048{
49 int this_cpu = smp_processor_id();
Ingo Molnar6687a972006-03-24 03:18:41 -080050 unsigned long touch_timestamp = per_cpu(touch_timestamp, this_cpu);
Ingo Molnar8446f1d2005-09-06 15:16:27 -070051
Ingo Molnar6687a972006-03-24 03:18:41 -080052 /* prevent double reports: */
53 if (per_cpu(print_timestamp, this_cpu) == touch_timestamp ||
54 did_panic ||
55 !per_cpu(watchdog_task, this_cpu))
Ingo Molnar8446f1d2005-09-06 15:16:27 -070056 return;
57
Ingo Molnar6687a972006-03-24 03:18:41 -080058 /* do not print during early bootup: */
59 if (unlikely(system_state != SYSTEM_RUNNING)) {
60 touch_softlockup_watchdog();
Ingo Molnar8446f1d2005-09-06 15:16:27 -070061 return;
Ingo Molnar6687a972006-03-24 03:18:41 -080062 }
Ingo Molnar8446f1d2005-09-06 15:16:27 -070063
Ingo Molnar6687a972006-03-24 03:18:41 -080064 /* Wake up the high-prio watchdog task every second: */
65 if (time_after(jiffies, touch_timestamp + HZ))
66 wake_up_process(per_cpu(watchdog_task, this_cpu));
67
68 /* Warn about unreasonable 10+ seconds delays: */
69 if (time_after(jiffies, touch_timestamp + 10*HZ)) {
70 per_cpu(print_timestamp, this_cpu) = touch_timestamp;
Ingo Molnar8446f1d2005-09-06 15:16:27 -070071
72 spin_lock(&print_lock);
73 printk(KERN_ERR "BUG: soft lockup detected on CPU#%d!\n",
74 this_cpu);
Ingo Molnar6687a972006-03-24 03:18:41 -080075 dump_stack();
Ingo Molnar8446f1d2005-09-06 15:16:27 -070076 spin_unlock(&print_lock);
77 }
78}
79
80/*
81 * The watchdog thread - runs every second and touches the timestamp.
82 */
83static int watchdog(void * __bind_cpu)
84{
Oleg Nesterov02fb6142007-05-08 00:24:03 -070085 struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
Ingo Molnar8446f1d2005-09-06 15:16:27 -070086
87 sched_setscheduler(current, SCHED_FIFO, &param);
88 current->flags |= PF_NOFREEZE;
89
Ingo Molnar8446f1d2005-09-06 15:16:27 -070090 /*
Ingo Molnar6687a972006-03-24 03:18:41 -080091 * Run briefly once per second to reset the softlockup timestamp.
92 * If this gets delayed for more than 10 seconds then the
93 * debug-printout triggers in softlockup_tick().
Ingo Molnar8446f1d2005-09-06 15:16:27 -070094 */
95 while (!kthread_should_stop()) {
Ingo Molnar6687a972006-03-24 03:18:41 -080096 set_current_state(TASK_INTERRUPTIBLE);
Ingo Molnar8446f1d2005-09-06 15:16:27 -070097 touch_softlockup_watchdog();
Ingo Molnar6687a972006-03-24 03:18:41 -080098 schedule();
Ingo Molnar8446f1d2005-09-06 15:16:27 -070099 }
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700100
101 return 0;
102}
103
104/*
105 * Create/destroy watchdog threads as CPUs come and go:
106 */
Chandra Seetharaman8c78f302006-07-30 03:03:35 -0700107static int __cpuinit
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700108cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
109{
110 int hotcpu = (unsigned long)hcpu;
111 struct task_struct *p;
112
113 switch (action) {
114 case CPU_UP_PREPARE:
115 BUG_ON(per_cpu(watchdog_task, hotcpu));
116 p = kthread_create(watchdog, hcpu, "watchdog/%d", hotcpu);
117 if (IS_ERR(p)) {
118 printk("watchdog for %i failed\n", hotcpu);
119 return NOTIFY_BAD;
120 }
Andrew Morton185ae6d2006-03-25 03:06:32 -0800121 per_cpu(touch_timestamp, hotcpu) = jiffies;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700122 per_cpu(watchdog_task, hotcpu) = p;
123 kthread_bind(p, hotcpu);
124 break;
125 case CPU_ONLINE:
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700126 wake_up_process(per_cpu(watchdog_task, hotcpu));
127 break;
128#ifdef CONFIG_HOTPLUG_CPU
129 case CPU_UP_CANCELED:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -0700130 if (!per_cpu(watchdog_task, hotcpu))
131 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700132 /* Unbind so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -0800133 kthread_bind(per_cpu(watchdog_task, hotcpu),
134 any_online_cpu(cpu_online_map));
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700135 case CPU_DEAD:
136 p = per_cpu(watchdog_task, hotcpu);
137 per_cpu(watchdog_task, hotcpu) = NULL;
138 kthread_stop(p);
139 break;
140#endif /* CONFIG_HOTPLUG_CPU */
141 }
142 return NOTIFY_OK;
143}
144
Chandra Seetharaman8c78f302006-07-30 03:03:35 -0700145static struct notifier_block __cpuinitdata cpu_nfb = {
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700146 .notifier_call = cpu_callback
147};
148
149__init void spawn_softlockup_task(void)
150{
151 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -0700152 int err = cpu_callback(&cpu_nfb, CPU_UP_PREPARE, cpu);
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700153
Akinobu Mita07dccf32006-09-29 02:00:22 -0700154 BUG_ON(err == NOTIFY_BAD);
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700155 cpu_callback(&cpu_nfb, CPU_ONLINE, cpu);
156 register_cpu_notifier(&cpu_nfb);
157
Alan Sterne041c682006-03-27 01:16:30 -0800158 atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700159}