2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* linux/include/linux/nmi.h
|
|
|
|
*/
|
|
|
|
#ifndef LINUX_NMI_H
|
|
|
|
#define LINUX_NMI_H
|
|
|
|
|
2006-09-29 12:59:03 +04:00
|
|
|
#include <linux/sched.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/irq.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* touch_nmi_watchdog - restart NMI watchdog timeout.
|
|
|
|
*
|
|
|
|
* If the architecture supports the NMI watchdog, touch_nmi_watchdog()
|
|
|
|
* may be used to reset the timeout - for code which intentionally
|
|
|
|
* disables interrupts for a long time. This call is stateless.
|
|
|
|
*/
|
|
|
|
#ifdef ARCH_HAS_NMI_WATCHDOG
|
2006-12-07 04:14:01 +03:00
|
|
|
#include <asm/nmi.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
extern void touch_nmi_watchdog(void);
|
2007-02-13 15:26:24 +03:00
|
|
|
extern void acpi_nmi_disable(void);
|
|
|
|
extern void acpi_nmi_enable(void);
|
2005-04-17 02:20:36 +04:00
|
|
|
#else
|
2007-02-13 15:26:24 +03:00
|
|
|
static inline void touch_nmi_watchdog(void)
|
|
|
|
{
|
|
|
|
touch_softlockup_watchdog();
|
|
|
|
}
|
|
|
|
static inline void acpi_nmi_disable(void) { }
|
|
|
|
static inline void acpi_nmi_enable(void) { }
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
|
|
|
|
2009-08-03 11:31:54 +04:00
|
|
|
/*
|
|
|
|
* Create trigger_all_cpu_backtrace() out of the arch-provided
|
|
|
|
* base function. Return whether such support was available,
|
|
|
|
* to allow calling code to fall back to some other mechanism:
|
|
|
|
*/
|
|
|
|
#ifdef arch_trigger_all_cpu_backtrace
|
|
|
|
static inline bool trigger_all_cpu_backtrace(void)
|
|
|
|
{
|
|
|
|
arch_trigger_all_cpu_backtrace();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline bool trigger_all_cpu_backtrace(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-12-07 04:14:01 +03:00
|
|
|
#endif
|
|
|
|
|
2010-02-06 05:47:05 +03:00
|
|
|
#ifdef CONFIG_NMI_WATCHDOG
|
|
|
|
int hw_nmi_is_cpu_stuck(struct pt_regs *);
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|