blob: ca242d35e8733ee8c23a7a960d28c933b5d055f4 [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,
Thomas Gleixner35cc4612007-10-15 23:28:20 +020021 DIE_PAGE_FAULT,
Jason Wesseld3597522008-02-15 14:55:53 -060022 DIE_NMIUNKNOWN,
Thomas Gleixner35cc4612007-10-15 23:28:20 +020023};
24
Arjan van de Venbc850d62008-01-30 13:33:07 +010025extern void printk_address(unsigned long address, int reliable);
Joe Perchesf461f132008-03-23 01:02:31 -070026extern void die(const char *, struct pt_regs *,long);
Jan Beulich22f59912008-01-30 13:31:23 +010027extern int __must_check __die(const char *, struct pt_regs *, long);
Thomas Gleixner35cc4612007-10-15 23:28:20 +020028extern void show_registers(struct pt_regs *regs);
Arjan van de Venbc850d62008-01-30 13:33:07 +010029extern void show_trace(struct task_struct *t, struct pt_regs *regs,
Soeren Sandmann Pedersen9c0729d2010-11-05 05:59:39 -040030 unsigned long *sp);
Pekka Enberge2ce07c2008-04-03 16:40:48 +030031extern void __show_regs(struct pt_regs *regs, int all);
Thomas Gleixner718fc132008-01-30 13:30:17 +010032extern void show_regs(struct pt_regs *regs);
Thomas Gleixner35cc4612007-10-15 23:28:20 +020033extern unsigned long oops_begin(void);
Jan Beulich22f59912008-01-30 13:31:23 +010034extern void oops_end(unsigned long, struct pt_regs *, int signr);
Cliff Wickman1d6225e2010-08-09 16:11:22 -050035#ifdef CONFIG_KEXEC
Cliff Wickman5edd19a2010-07-20 18:09:05 -050036extern int in_crash_kexec;
Cliff Wickman1d6225e2010-08-09 16:11:22 -050037#else
38/* no crash dump is ever in progress if no crash kernel can be kexec'd */
39#define in_crash_kexec 0
40#endif
Thomas Gleixner35cc4612007-10-15 23:28:20 +020041
H. Peter Anvin1965aae2008-10-22 22:26:29 -070042#endif /* _ASM_X86_KDEBUG_H */