move die notifier handling to common code
[linux-2.6-block.git] / include / asm-s390 / kdebug.h
CommitLineData
4ba069b8
MG
1#ifndef _S390_KDEBUG_H
2#define _S390_KDEBUG_H
3
4/*
5 * Feb 2006 Ported to s390 <grundym@us.ibm.com>
6 */
7#include <linux/notifier.h>
8
9struct pt_regs;
10
33464e3b
CH
11/*
12 * These are only here because kprobes.c wants them to implement a
13 * blatant layering violation. Will hopefully go away soon once all
14 * architectures are updated.
15 */
16static inline int register_page_fault_notifier(struct notifier_block *nb)
17{
18 return 0;
19}
20static inline int unregister_page_fault_notifier(struct notifier_block *nb)
21{
22 return 0;
23}
24
4ba069b8
MG
25enum die_val {
26 DIE_OOPS = 1,
27 DIE_BPT,
28 DIE_SSTEP,
29 DIE_PANIC,
30 DIE_NMI,
31 DIE_DIE,
32 DIE_NMIWATCHDOG,
33 DIE_KERNELDEBUG,
34 DIE_TRAP,
35 DIE_GPF,
36 DIE_CALL,
37 DIE_NMI_IPI,
4ba069b8
MG
38};
39
2b67fc46
HC
40extern void die(const char *, struct pt_regs *, long);
41
4ba069b8 42#endif