tuntap: switch to use rtnl_dereference()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / watchdog.c
blob75a2ab3d0b0208dfa51e40339ffd00206622732e
1 /*
2 * Detect hard and soft lockups on a system
4 * started by Don Zickus, Copyright (C) 2010 Red Hat, Inc.
6 * 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
9 * to those contributors as well.
12 #define pr_fmt(fmt) "NMI watchdog: " fmt
14 #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>
25 #include <linux/smpboot.h>
27 #include <asm/irq_regs.h>
28 #include <linux/kvm_para.h>
29 #include <linux/perf_event.h>
31 int watchdog_enabled = 1;
32 int __read_mostly watchdog_thresh = 10;
33 static int __read_mostly watchdog_disabled;
34 static u64 __read_mostly sample_period;
36 static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
37 static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
38 static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
39 static DEFINE_PER_CPU(bool, softlockup_touch_sync);
40 static DEFINE_PER_CPU(bool, soft_watchdog_warn);
41 static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
42 static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt);
43 #ifdef CONFIG_HARDLOCKUP_DETECTOR
44 static DEFINE_PER_CPU(bool, hard_watchdog_warn);
45 static DEFINE_PER_CPU(bool, watchdog_nmi_touch);
46 static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
47 static DEFINE_PER_CPU(struct perf_event *, watchdog_ev);
48 #endif
50 /* boot commands */
52 * Should we panic when a soft-lockup or hard-lockup occurs:
54 #ifdef CONFIG_HARDLOCKUP_DETECTOR
55 static int hardlockup_panic =
56 CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE;
58 static int __init hardlockup_panic_setup(char *str)
60 if (!strncmp(str, "panic", 5))
61 hardlockup_panic = 1;
62 else if (!strncmp(str, "nopanic", 7))
63 hardlockup_panic = 0;
64 else if (!strncmp(str, "0", 1))
65 watchdog_enabled = 0;
66 return 1;
68 __setup("nmi_watchdog=", hardlockup_panic_setup);
69 #endif
71 unsigned int __read_mostly softlockup_panic =
72 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
74 static int __init softlockup_panic_setup(char *str)
76 softlockup_panic = simple_strtoul(str, NULL, 0);
78 return 1;
80 __setup("softlockup_panic=", softlockup_panic_setup);
82 static int __init nowatchdog_setup(char *str)
84 watchdog_enabled = 0;
85 return 1;
87 __setup("nowatchdog", nowatchdog_setup);
89 /* deprecated */
90 static int __init nosoftlockup_setup(char *str)
92 watchdog_enabled = 0;
93 return 1;
95 __setup("nosoftlockup", nosoftlockup_setup);
96 /* */
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.
105 static int get_softlockup_thresh(void)
107 return watchdog_thresh * 2;
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.
115 static unsigned long get_timestamp(int this_cpu)
117 return cpu_clock(this_cpu) >> 30LL; /* 2^30 ~= 10^9 */
120 static void set_sample_period(void)
123 * convert watchdog_thresh from seconds to ns
124 * 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
129 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
132 /* Commands for resetting the watchdog */
133 static void __touch_watchdog(void)
135 int this_cpu = smp_processor_id();
137 __this_cpu_write(watchdog_touch_ts, get_timestamp(this_cpu));
140 void touch_softlockup_watchdog(void)
142 __this_cpu_write(watchdog_touch_ts, 0);
144 EXPORT_SYMBOL(touch_softlockup_watchdog);
146 void touch_all_softlockup_watchdogs(void)
148 int cpu;
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
155 for_each_online_cpu(cpu)
156 per_cpu(watchdog_touch_ts, cpu) = 0;
159 #ifdef CONFIG_HARDLOCKUP_DETECTOR
160 void touch_nmi_watchdog(void)
162 if (watchdog_enabled) {
163 unsigned cpu;
165 for_each_present_cpu(cpu) {
166 if (per_cpu(watchdog_nmi_touch, cpu) != true)
167 per_cpu(watchdog_nmi_touch, cpu) = true;
170 touch_softlockup_watchdog();
172 EXPORT_SYMBOL(touch_nmi_watchdog);
174 #endif
176 void touch_softlockup_watchdog_sync(void)
178 __raw_get_cpu_var(softlockup_touch_sync) = true;
179 __raw_get_cpu_var(watchdog_touch_ts) = 0;
182 #ifdef CONFIG_HARDLOCKUP_DETECTOR
183 /* watchdog detector functions */
184 static int is_hardlockup(void)
186 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
188 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
189 return 1;
191 __this_cpu_write(hrtimer_interrupts_saved, hrint);
192 return 0;
194 #endif
196 static int is_softlockup(unsigned long touch_ts)
198 unsigned long now = get_timestamp(smp_processor_id());
200 /* Warn about unreasonable delays: */
201 if (time_after(now, touch_ts + get_softlockup_thresh()))
202 return now - touch_ts;
204 return 0;
207 #ifdef CONFIG_HARDLOCKUP_DETECTOR
209 static 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,
217 /* Callback function for perf event subsystem */
218 static void watchdog_overflow_callback(struct perf_event *event,
219 struct perf_sample_data *data,
220 struct pt_regs *regs)
222 /* Ensure the watchdog never gets throttled */
223 event->hw.interrupts = 0;
225 if (__this_cpu_read(watchdog_nmi_touch) == true) {
226 __this_cpu_write(watchdog_nmi_touch, false);
227 return;
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
236 if (is_hardlockup()) {
237 int this_cpu = smp_processor_id();
239 /* only print hardlockups once */
240 if (__this_cpu_read(hard_watchdog_warn) == true)
241 return;
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);
248 __this_cpu_write(hard_watchdog_warn, true);
249 return;
252 __this_cpu_write(hard_watchdog_warn, false);
253 return;
255 #endif /* CONFIG_HARDLOCKUP_DETECTOR */
257 static void watchdog_interrupt_count(void)
259 __this_cpu_inc(hrtimer_interrupts);
262 static int watchdog_nmi_enable(unsigned int cpu);
263 static void watchdog_nmi_disable(unsigned int cpu);
265 /* watchdog kicker functions */
266 static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
268 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
269 struct pt_regs *regs = get_irq_regs();
270 int duration;
272 /* kick the hardlockup detector */
273 watchdog_interrupt_count();
275 /* kick the softlockup detector */
276 wake_up_process(__this_cpu_read(softlockup_watchdog));
278 /* .. and repeat */
279 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
281 if (touch_ts == 0) {
282 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
284 * If the time stamp was touched atomically
285 * make sure the scheduler tick is up to date.
287 __this_cpu_write(softlockup_touch_sync, false);
288 sched_clock_tick();
291 /* Clear the guest paused flag on watchdog reset */
292 kvm_check_and_clear_guest_paused();
293 __touch_watchdog();
294 return HRTIMER_RESTART;
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
303 duration = is_softlockup(touch_ts);
304 if (unlikely(duration)) {
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
310 if (kvm_check_and_clear_guest_paused())
311 return HRTIMER_RESTART;
313 /* only warn once */
314 if (__this_cpu_read(soft_watchdog_warn) == true)
315 return HRTIMER_RESTART;
317 printk(KERN_EMERG "BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
318 smp_processor_id(), duration,
319 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();
327 if (softlockup_panic)
328 panic("softlockup: hung tasks");
329 __this_cpu_write(soft_watchdog_warn, true);
330 } else
331 __this_cpu_write(soft_watchdog_warn, false);
333 return HRTIMER_RESTART;
336 static void watchdog_set_prio(unsigned int policy, unsigned int prio)
338 struct sched_param param = { .sched_priority = prio };
340 sched_setscheduler(current, policy, &param);
343 static void watchdog_enable(unsigned int cpu)
345 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
347 /* kick off the timer for the hardlockup detector */
348 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
349 hrtimer->function = watchdog_timer_fn;
351 if (!watchdog_enabled) {
352 kthread_park(current);
353 return;
356 /* Enable the perf event */
357 watchdog_nmi_enable(cpu);
359 /* done here because hrtimer_start can only pin to smp_processor_id() */
360 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
361 HRTIMER_MODE_REL_PINNED);
363 /* initialize timestamp */
364 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
365 __touch_watchdog();
368 static void watchdog_disable(unsigned int cpu)
370 struct hrtimer *hrtimer = &__raw_get_cpu_var(watchdog_hrtimer);
372 watchdog_set_prio(SCHED_NORMAL, 0);
373 hrtimer_cancel(hrtimer);
374 /* disable the perf event */
375 watchdog_nmi_disable(cpu);
378 static int watchdog_should_run(unsigned int cpu)
380 return __this_cpu_read(hrtimer_interrupts) !=
381 __this_cpu_read(soft_lockup_hrtimer_cnt);
385 * The watchdog thread function - touches the timestamp.
387 * It only runs once every sample_period seconds (4 seconds by
388 * default) to reset the softlockup timestamp. If this gets delayed
389 * for more than 2*watchdog_thresh seconds then the debug-printout
390 * triggers in watchdog_timer_fn().
392 static void watchdog(unsigned int cpu)
394 __this_cpu_write(soft_lockup_hrtimer_cnt,
395 __this_cpu_read(hrtimer_interrupts));
396 __touch_watchdog();
399 #ifdef CONFIG_HARDLOCKUP_DETECTOR
401 * People like the simple clean cpu node info on boot.
402 * Reduce the watchdog noise by only printing messages
403 * that are different from what cpu0 displayed.
405 static unsigned long cpu0_err;
407 static int watchdog_nmi_enable(unsigned int cpu)
409 struct perf_event_attr *wd_attr;
410 struct perf_event *event = per_cpu(watchdog_ev, cpu);
412 /* is it already setup and enabled? */
413 if (event && event->state > PERF_EVENT_STATE_OFF)
414 goto out;
416 /* it is setup but not enabled */
417 if (event != NULL)
418 goto out_enable;
420 wd_attr = &wd_hw_attr;
421 wd_attr->sample_period = hw_nmi_get_sample_period(watchdog_thresh);
423 /* Try to register using hardware perf events */
424 event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL);
426 /* save cpu0 error for future comparision */
427 if (cpu == 0 && IS_ERR(event))
428 cpu0_err = PTR_ERR(event);
430 if (!IS_ERR(event)) {
431 /* only print for cpu0 or different than cpu0 */
432 if (cpu == 0 || cpu0_err)
433 pr_info("enabled on all CPUs, permanently consumes one hw-PMU counter.\n");
434 goto out_save;
437 /* skip displaying the same error again */
438 if (cpu > 0 && (PTR_ERR(event) == cpu0_err))
439 return PTR_ERR(event);
441 /* vary the KERN level based on the returned errno */
442 if (PTR_ERR(event) == -EOPNOTSUPP)
443 pr_info("disabled (cpu%i): not supported (no LAPIC?)\n", cpu);
444 else if (PTR_ERR(event) == -ENOENT)
445 pr_warning("disabled (cpu%i): hardware events not enabled\n",
446 cpu);
447 else
448 pr_err("disabled (cpu%i): unable to create perf event: %ld\n",
449 cpu, PTR_ERR(event));
450 return PTR_ERR(event);
452 /* success path */
453 out_save:
454 per_cpu(watchdog_ev, cpu) = event;
455 out_enable:
456 perf_event_enable(per_cpu(watchdog_ev, cpu));
457 out:
458 return 0;
461 static void watchdog_nmi_disable(unsigned int cpu)
463 struct perf_event *event = per_cpu(watchdog_ev, cpu);
465 if (event) {
466 perf_event_disable(event);
467 per_cpu(watchdog_ev, cpu) = NULL;
469 /* should be in cleanup, but blocks oprofile */
470 perf_event_release_kernel(event);
472 return;
474 #else
475 static int watchdog_nmi_enable(unsigned int cpu) { return 0; }
476 static void watchdog_nmi_disable(unsigned int cpu) { return; }
477 #endif /* CONFIG_HARDLOCKUP_DETECTOR */
479 /* prepare/enable/disable routines */
480 /* sysctl functions */
481 #ifdef CONFIG_SYSCTL
482 static void watchdog_enable_all_cpus(void)
484 unsigned int cpu;
486 if (watchdog_disabled) {
487 watchdog_disabled = 0;
488 for_each_online_cpu(cpu)
489 kthread_unpark(per_cpu(softlockup_watchdog, cpu));
493 static void watchdog_disable_all_cpus(void)
495 unsigned int cpu;
497 if (!watchdog_disabled) {
498 watchdog_disabled = 1;
499 for_each_online_cpu(cpu)
500 kthread_park(per_cpu(softlockup_watchdog, cpu));
505 * proc handler for /proc/sys/kernel/nmi_watchdog,watchdog_thresh
508 int proc_dowatchdog(struct ctl_table *table, int write,
509 void __user *buffer, size_t *lenp, loff_t *ppos)
511 int ret;
513 if (watchdog_disabled < 0)
514 return -ENODEV;
516 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
517 if (ret || !write)
518 return ret;
520 set_sample_period();
521 if (watchdog_enabled && watchdog_thresh)
522 watchdog_enable_all_cpus();
523 else
524 watchdog_disable_all_cpus();
526 return ret;
528 #endif /* CONFIG_SYSCTL */
530 static struct smp_hotplug_thread watchdog_threads = {
531 .store = &softlockup_watchdog,
532 .thread_should_run = watchdog_should_run,
533 .thread_fn = watchdog,
534 .thread_comm = "watchdog/%u",
535 .setup = watchdog_enable,
536 .park = watchdog_disable,
537 .unpark = watchdog_enable,
540 void __init lockup_detector_init(void)
542 set_sample_period();
543 if (smpboot_register_percpu_thread(&watchdog_threads)) {
544 pr_err("Failed to create watchdog threads, disabled\n");
545 watchdog_disabled = -ENODEV;