Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_BUG_H |
| 2 | #define _ASM_GENERIC_BUG_H |
| 3 | |
| 4 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | |
Matt Mackall | c8538a7 | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 6 | #ifdef CONFIG_BUG |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 7 | |
| 8 | #ifdef CONFIG_GENERIC_BUG |
| 9 | #ifndef __ASSEMBLY__ |
| 10 | struct bug_entry { |
| 11 | unsigned long bug_addr; |
| 12 | #ifdef CONFIG_DEBUG_BUGVERBOSE |
| 13 | const char *file; |
| 14 | unsigned short line; |
| 15 | #endif |
| 16 | unsigned short flags; |
| 17 | }; |
| 18 | #endif /* __ASSEMBLY__ */ |
| 19 | |
| 20 | #define BUGFLAG_WARNING (1<<0) |
| 21 | #endif /* CONFIG_GENERIC_BUG */ |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #ifndef HAVE_ARCH_BUG |
| 24 | #define BUG() do { \ |
Ingo Molnar | 91368d7 | 2006-03-23 03:00:54 -0800 | [diff] [blame] | 25 | printk("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | panic("BUG!"); \ |
| 27 | } while (0) |
| 28 | #endif |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #ifndef HAVE_ARCH_BUG_ON |
Alexey Dobriyan | 2a41de4 | 2007-07-17 04:03:56 -0700 | [diff] [blame] | 31 | #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while(0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #endif |
| 33 | |
Olof Johansson | 3a6a62f | 2008-01-30 13:32:50 +0100 | [diff] [blame] | 34 | #ifndef __WARN |
Arjan van de Ven | 79b4cc5 | 2008-01-30 13:32:50 +0100 | [diff] [blame^] | 35 | #ifndef __ASSEMBLY__ |
| 36 | extern void warn_on_slowpath(const char *file, const int line); |
| 37 | #define WANT_WARN_ON_SLOWPATH |
| 38 | #endif |
| 39 | #define __WARN() warn_on_slowpath(__FILE__, __LINE__) |
Olof Johansson | 3a6a62f | 2008-01-30 13:32:50 +0100 | [diff] [blame] | 40 | #endif |
| 41 | |
| 42 | #ifndef WARN_ON |
Herbert Xu | 684f978 | 2006-09-29 01:59:06 -0700 | [diff] [blame] | 43 | #define WARN_ON(condition) ({ \ |
Linus Torvalds | 8d4fbcf | 2007-07-31 21:12:07 -0700 | [diff] [blame] | 44 | int __ret_warn_on = !!(condition); \ |
Olof Johansson | 3a6a62f | 2008-01-30 13:32:50 +0100 | [diff] [blame] | 45 | if (unlikely(__ret_warn_on)) \ |
| 46 | __WARN(); \ |
Herbert Xu | 684f978 | 2006-09-29 01:59:06 -0700 | [diff] [blame] | 47 | unlikely(__ret_warn_on); \ |
| 48 | }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #endif |
| 50 | |
Matt Mackall | c8538a7 | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 51 | #else /* !CONFIG_BUG */ |
| 52 | #ifndef HAVE_ARCH_BUG |
| 53 | #define BUG() |
| 54 | #endif |
| 55 | |
Matt Mackall | c8538a7 | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 56 | #ifndef HAVE_ARCH_BUG_ON |
| 57 | #define BUG_ON(condition) do { if (condition) ; } while(0) |
| 58 | #endif |
| 59 | |
| 60 | #ifndef HAVE_ARCH_WARN_ON |
Ralf Baechle | 8c7c7c9 | 2006-10-19 23:28:34 -0700 | [diff] [blame] | 61 | #define WARN_ON(condition) ({ \ |
Linus Torvalds | 8d4fbcf | 2007-07-31 21:12:07 -0700 | [diff] [blame] | 62 | int __ret_warn_on = !!(condition); \ |
Ralf Baechle | 8c7c7c9 | 2006-10-19 23:28:34 -0700 | [diff] [blame] | 63 | unlikely(__ret_warn_on); \ |
| 64 | }) |
Matt Mackall | c8538a7 | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 65 | #endif |
| 66 | #endif |
| 67 | |
Andrew Morton | d69a892 | 2006-10-06 00:43:49 -0700 | [diff] [blame] | 68 | #define WARN_ON_ONCE(condition) ({ \ |
| 69 | static int __warned; \ |
Linus Torvalds | 8d4fbcf | 2007-07-31 21:12:07 -0700 | [diff] [blame] | 70 | int __ret_warn_once = !!(condition); \ |
Andrew Morton | d69a892 | 2006-10-06 00:43:49 -0700 | [diff] [blame] | 71 | \ |
| 72 | if (unlikely(__ret_warn_once)) \ |
| 73 | if (WARN_ON(!__warned)) \ |
| 74 | __warned = 1; \ |
| 75 | unlikely(__ret_warn_once); \ |
Ingo Molnar | 74bb6a0 | 2006-06-25 05:48:09 -0700 | [diff] [blame] | 76 | }) |
| 77 | |
Ingo Molnar | 8eb94f8 | 2006-06-27 02:54:50 -0700 | [diff] [blame] | 78 | #ifdef CONFIG_SMP |
| 79 | # define WARN_ON_SMP(x) WARN_ON(x) |
| 80 | #else |
| 81 | # define WARN_ON_SMP(x) do { } while (0) |
| 82 | #endif |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | #endif |