Linux-2.6.12-rc2
[linux-2.6/kvm.git] / include / asm-generic / bug.h
blobe5913c3b715a01a8a778ddefeb0023ad42296042
1 #ifndef _ASM_GENERIC_BUG_H
2 #define _ASM_GENERIC_BUG_H
4 #include <linux/compiler.h>
5 #include <linux/config.h>
7 #ifndef HAVE_ARCH_BUG
8 #define BUG() do { \
9 printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
10 panic("BUG!"); \
11 } while (0)
12 #endif
14 #ifndef HAVE_ARCH_PAGE_BUG
15 #define PAGE_BUG(page) do { \
16 printk("page BUG for page at %p\n", page); \
17 BUG(); \
18 } while (0)
19 #endif
21 #ifndef HAVE_ARCH_BUG_ON
22 #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
23 #endif
25 #ifndef HAVE_ARCH_WARN_ON
26 #define WARN_ON(condition) do { \
27 if (unlikely((condition)!=0)) { \
28 printk("Badness in %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__); \
29 dump_stack(); \
30 } \
31 } while (0)
32 #endif
34 #endif