nmi.h 2.1 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
#if defined(CONFIG_HARDLOCKUP_DETECTOR)
28
extern void hardlockup_detector_disable(void);
29
#else
30
static inline void hardlockup_detector_disable(void)
31 32 33 34
{
}
#endif

35 36 37 38 39 40 41 42
/*
 * 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)
{
43
	arch_trigger_all_cpu_backtrace(true);
44 45 46

	return true;
}
47 48 49 50 51
static inline bool trigger_allbutself_cpu_backtrace(void)
{
	arch_trigger_all_cpu_backtrace(false);
	return true;
}
52 53 54 55 56
#else
static inline bool trigger_all_cpu_backtrace(void)
{
	return false;
}
57 58 59 60
static inline bool trigger_allbutself_cpu_backtrace(void)
{
	return false;
}
A
Andrew Morton 已提交
61 62
#endif

63
#ifdef CONFIG_LOCKUP_DETECTOR
64
int hw_nmi_is_cpu_stuck(struct pt_regs *);
65
u64 hw_nmi_get_sample_period(int watchdog_thresh);
66 67
extern int nmi_watchdog_enabled;
extern int soft_watchdog_enabled;
68
extern int watchdog_user_enabled;
69
extern int watchdog_thresh;
70
extern int sysctl_softlockup_all_cpu_backtrace;
71
struct ctl_table;
72 73 74 75 76 77 78 79
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 *);
80 81
#endif

82 83 84 85
#ifdef CONFIG_HAVE_ACPI_APEI_NMI
#include <asm/nmi.h>
#endif

L
Linus Torvalds 已提交
86
#endif