]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/include/asm/kdebug.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile
[net-next-2.6.git] / arch / x86 / include / asm / kdebug.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_KDEBUG_H
2#define _ASM_X86_KDEBUG_H
35cc4611
TG
3
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,
d3597524 23 DIE_NMIUNKNOWN,
35cc4611
TG
24};
25
bc850d6b 26extern void printk_address(unsigned long address, int reliable);
f461f137 27extern void die(const char *, struct pt_regs *,long);
22f5991c 28extern int __must_check __die(const char *, struct pt_regs *, long);
35cc4611 29extern void show_registers(struct pt_regs *regs);
bc850d6b 30extern void show_trace(struct task_struct *t, struct pt_regs *regs,
f461f137 31 unsigned long *sp, unsigned long bp);
e2ce07c8 32extern void __show_regs(struct pt_regs *regs, int all);
718fc13b 33extern void show_regs(struct pt_regs *regs);
35cc4611 34extern unsigned long oops_begin(void);
22f5991c 35extern void oops_end(unsigned long, struct pt_regs *, int signr);
1d6225e8 36#ifdef CONFIG_KEXEC
5edd19af 37extern int in_crash_kexec;
1d6225e8
CW
38#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
35cc4611 42
1965aae3 43#endif /* _ASM_X86_KDEBUG_H */