blob: 5bdfca86581beb3b45c60fd1f8d900a5daa68bf9 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_KDEBUG_H
2#define _ASM_X86_KDEBUG_H
Thomas Gleixner35cc4612007-10-15 23:28:20 +02003
4#include <linux/notifier.h>
5
6struct pt_regs;
7
8/* Grossly misnamed. */
9enum die_val {
10 DIE_OOPS = 1,
11 DIE_INT3,
12 DIE_DEBUG,
13 DIE_PANIC,
14 DIE_NMI,
15 DIE_DIE,
16 DIE_NMIWATCHDOG,
17 DIE_KERNELDEBUG,
18 DIE_TRAP,
19 DIE_GPF,
20 DIE_CALL,
21 DIE_NMI_IPI,
22 DIE_PAGE_FAULT,
Jason Wesseld3597522008-02-15 14:55:53 -060023 DIE_NMIUNKNOWN,
Thomas Gleixner35cc4612007-10-15 23:28:20 +020024};
25
Arjan van de Venbc850d62008-01-30 13:33:07 +010026extern void printk_address(unsigned long address, int reliable);
Joe Perchesf461f132008-03-23 01:02:31 -070027extern void die(const char *, struct pt_regs *,long);
Jan Beulich22f59912008-01-30 13:31:23 +010028extern int __must_check __die(const char *, struct pt_regs *, long);
Thomas Gleixner35cc4612007-10-15 23:28:20 +020029extern void show_registers(struct pt_regs *regs);
Arjan van de Venbc850d62008-01-30 13:33:07 +010030extern void show_trace(struct task_struct *t, struct pt_regs *regs,
Joe Perchesf461f132008-03-23 01:02:31 -070031 unsigned long *sp, unsigned long bp);
Pekka Enberge2ce07c2008-04-03 16:40:48 +030032extern void __show_regs(struct pt_regs *regs, int all);
Thomas Gleixner718fc132008-01-30 13:30:17 +010033extern void show_regs(struct pt_regs *regs);
Thomas Gleixner35cc4612007-10-15 23:28:20 +020034extern unsigned long oops_begin(void);
Jan Beulich22f59912008-01-30 13:31:23 +010035extern void oops_end(unsigned long, struct pt_regs *, int signr);
Cliff Wickman1d6225e2010-08-09 16:11:22 -050036#ifdef CONFIG_KEXEC
Cliff Wickman5edd19a2010-07-20 18:09:05 -050037extern int in_crash_kexec;
Cliff Wickman1d6225e2010-08-09 16:11:22 -050038#else
39/* no crash dump is ever in progress if no crash kernel can be kexec'd */
40#define in_crash_kexec 0
41#endif
Thomas Gleixner35cc4612007-10-15 23:28:20 +020042
H. Peter Anvin1965aae2008-10-22 22:26:29 -070043#endif /* _ASM_X86_KDEBUG_H */