blob: d276b5510c83498bbd4815367ef05cf398beee3b [file] [log] [blame]
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -08001#ifndef _LINUX_BUG_H
2#define _LINUX_BUG_H
3
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -08004#include <asm/bug.h>
5
6enum bug_trap_type {
7 BUG_TRAP_TYPE_NONE = 0,
8 BUG_TRAP_TYPE_WARN = 1,
9 BUG_TRAP_TYPE_BUG = 2,
10};
11
Heiko Carstens608e2612007-07-15 23:41:39 -070012struct pt_regs;
13
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080014#ifdef CONFIG_GENERIC_BUG
15#include <asm-generic/bug.h>
16
17static inline int is_warning_bug(const struct bug_entry *bug)
18{
19 return bug->flags & BUGFLAG_WARNING;
20}
21
22const struct bug_entry *find_bug(unsigned long bugaddr);
23
Heiko Carstens608e2612007-07-15 23:41:39 -070024enum bug_trap_type report_bug(unsigned long bug_addr, struct pt_regs *regs);
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080025
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080026/* These are defined by the architecture */
27int is_valid_bugaddr(unsigned long addr);
28
29#else /* !CONFIG_GENERIC_BUG */
30
Heiko Carstens608e2612007-07-15 23:41:39 -070031static inline enum bug_trap_type report_bug(unsigned long bug_addr,
32 struct pt_regs *regs)
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080033{
34 return BUG_TRAP_TYPE_BUG;
35}
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080036
37#endif /* CONFIG_GENERIC_BUG */
38#endif /* _LINUX_BUG_H */