nmi.h 2.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 *  linux/include/linux/nmi.h
 */
#ifndef LINUX_NMI_H
#define LINUX_NMI_H

7
#include <linux/sched.h>
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16
#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.
 */
17
#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
A
Andrew Morton 已提交
18
#include <asm/nmi.h>
19 20
extern void touch_nmi_watchdog(void);
#else
21 22 23 24
static inline void touch_nmi_watchdog(void)
{
	touch_softlockup_watchdog();
}
25
#endif
L
Linus Torvalds 已提交
26

27 28 29 30 31 32 33 34 35 36 37 38 39
#if defined(CONFIG_HARDLOCKUP_DETECTOR)
extern void watchdog_enable_hardlockup_detector(bool val);
extern bool watchdog_hardlockup_detector_is_enabled(void);
#else
static inline void watchdog_enable_hardlockup_detector(bool val)
{
}
static inline bool watchdog_hardlockup_detector_is_enabled(void)
{
	return true;
}
#endif

40 41 42 43 44 45 46 47
/*
 * 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)
{
48
	arch_trigger_all_cpu_backtrace(true);
49 50 51

	return true;
}
52 53 54 55 56
static inline bool trigger_allbutself_cpu_backtrace(void)
{
	arch_trigger_all_cpu_backtrace(false);
	return true;
}
57 58 59 60 61
#else
static inline bool trigger_all_cpu_backtrace(void)
{
	return false;
}
62 63 64 65
static inline bool trigger_allbutself_cpu_backtrace(void)
{
	return false;
}
A
Andrew Morton 已提交
66 67
#endif

68
#ifdef CONFIG_LOCKUP_DETECTOR
69
int hw_nmi_is_cpu_stuck(struct pt_regs *);
70
u64 hw_nmi_get_sample_period(int watchdog_thresh);
71 72
extern int nmi_watchdog_enabled;
extern int soft_watchdog_enabled;
73
extern int watchdog_user_enabled;
74
extern int watchdog_thresh;
75
extern int sysctl_softlockup_all_cpu_backtrace;
76
struct ctl_table;
77 78 79 80 81 82 83 84
extern int proc_watchdog(struct ctl_table *, int ,
			 void __user *, size_t *, loff_t *);
extern int proc_nmi_watchdog(struct ctl_table *, int ,
			     void __user *, size_t *, loff_t *);
extern int proc_soft_watchdog(struct ctl_table *, int ,
			      void __user *, size_t *, loff_t *);
extern int proc_watchdog_thresh(struct ctl_table *, int ,
				void __user *, size_t *, loff_t *);
85 86
#endif

87 88 89 90
#ifdef CONFIG_HAVE_ACPI_APEI_NMI
#include <asm/nmi.h>
#endif

L
Linus Torvalds 已提交
91
#endif