c376d45432
There is no need to keep NMI_DISABLED definition and use it for nmi_watchdog by default. Here is the point why: - IO-APIC and APIC chips are programmed for nmi_watchdog support at very early stage of kernel booting and not having nmi_watchdog specified as boot option lead only to nmi_watchdog becomes to NMI_NONE anyway - enable nmi_watchdog thru /proc/sys/kernel/nmi if it was not specified at boot is not possible too (even having this sysfs entry) Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> Cc: macro@linux-mips.org Signed-off-by: Ingo Molnar <mingo@elte.hu>
71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
#ifndef _ASM_X86_NMI_H_
|
|
#define _ASM_X86_NMI_H_
|
|
|
|
#include <linux/pm.h>
|
|
#include <asm/irq.h>
|
|
#include <asm/io.h>
|
|
|
|
#ifdef ARCH_HAS_NMI_WATCHDOG
|
|
|
|
/**
|
|
* do_nmi_callback
|
|
*
|
|
* Check to see if a callback exists and execute it. Return 1
|
|
* if the handler exists and was handled successfully.
|
|
*/
|
|
int do_nmi_callback(struct pt_regs *regs, int cpu);
|
|
|
|
#ifdef CONFIG_X86_64
|
|
extern void default_do_nmi(struct pt_regs *);
|
|
#endif
|
|
|
|
extern void die_nmi(char *str, struct pt_regs *regs, int do_panic);
|
|
extern int check_nmi_watchdog(void);
|
|
extern int nmi_watchdog_enabled;
|
|
extern int avail_to_resrv_perfctr_nmi_bit(unsigned int);
|
|
extern int avail_to_resrv_perfctr_nmi(unsigned int);
|
|
extern int reserve_perfctr_nmi(unsigned int);
|
|
extern void release_perfctr_nmi(unsigned int);
|
|
extern int reserve_evntsel_nmi(unsigned int);
|
|
extern void release_evntsel_nmi(unsigned int);
|
|
|
|
extern void setup_apic_nmi_watchdog(void *);
|
|
extern void stop_apic_nmi_watchdog(void *);
|
|
extern void disable_timer_nmi_watchdog(void);
|
|
extern void enable_timer_nmi_watchdog(void);
|
|
extern int nmi_watchdog_tick(struct pt_regs *regs, unsigned reason);
|
|
|
|
extern atomic_t nmi_active;
|
|
extern unsigned int nmi_watchdog;
|
|
#define NMI_NONE 0
|
|
#define NMI_IO_APIC 1
|
|
#define NMI_LOCAL_APIC 2
|
|
#define NMI_INVALID 3
|
|
|
|
struct ctl_table;
|
|
struct file;
|
|
extern int proc_nmi_enabled(struct ctl_table *, int , struct file *,
|
|
void __user *, size_t *, loff_t *);
|
|
extern int unknown_nmi_panic;
|
|
|
|
void __trigger_all_cpu_backtrace(void);
|
|
#define trigger_all_cpu_backtrace() __trigger_all_cpu_backtrace()
|
|
|
|
static inline void localise_nmi_watchdog(void)
|
|
{
|
|
if (nmi_watchdog == NMI_IO_APIC)
|
|
nmi_watchdog = NMI_LOCAL_APIC;
|
|
}
|
|
#endif
|
|
|
|
void lapic_watchdog_stop(void);
|
|
int lapic_watchdog_init(unsigned nmi_hz);
|
|
int lapic_wd_event(unsigned nmi_hz);
|
|
unsigned lapic_adjust_nmi_hz(unsigned hz);
|
|
int lapic_watchdog_ok(void);
|
|
void disable_lapic_nmi_watchdog(void);
|
|
void enable_lapic_nmi_watchdog(void);
|
|
void stop_nmi(void);
|
|
void restart_nmi(void);
|
|
|
|
#endif
|