1 #ifndef _ASM_GENERIC_BUG_H
2 #define _ASM_GENERIC_BUG_H
4 #include <linux/compiler.h>
6 #ifdef CONFIG_GENERIC_BUG
7 #define BUGFLAG_WARNING (1 << 0)
8 #define BUGFLAG_ONCE (1 << 1)
9 #define BUGFLAG_DONE (1 << 2)
10 #define BUGFLAG_TAINT(taint) ((taint) << 8)
11 #define BUG_GET_TAINT(bug) ((bug)->flags >> 8)
15 #include <linux/kernel.h>
19 #ifdef CONFIG_GENERIC_BUG
21 #ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
22 unsigned long bug_addr
;
24 signed int bug_addr_disp
;
26 #ifdef CONFIG_DEBUG_BUGVERBOSE
27 #ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
36 #endif /* CONFIG_GENERIC_BUG */
39 * Don't use BUG() or BUG_ON() unless there's really no way out; one
40 * example might be detecting data structure corruption in the middle
41 * of an operation that can't be backed out of. If the (sub)system
42 * can somehow continue operating, perhaps with reduced functionality,
43 * it's probably not BUG-worthy.
45 * If you're tempted to BUG(), think again: is completely giving up
46 * really the *only* solution? There are usually better options, where
47 * users don't need to reboot ASAP and can mostly shut down cleanly.
51 printk("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
56 #ifndef HAVE_ARCH_BUG_ON
57 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)
61 #define __WARN_TAINT(taint) __WARN_FLAGS(BUGFLAG_TAINT(taint))
62 #define __WARN_ONCE_TAINT(taint) __WARN_FLAGS(BUGFLAG_ONCE|BUGFLAG_TAINT(taint))
64 #define WARN_ON_ONCE(condition) ({ \
65 int __ret_warn_on = !!(condition); \
66 if (unlikely(__ret_warn_on)) \
67 __WARN_ONCE_TAINT(TAINT_WARN); \
68 unlikely(__ret_warn_on); \
73 * WARN(), WARN_ON(), WARN_ON_ONCE, and so on can be used to report
74 * significant issues that need prompt attention if they should ever
75 * appear at runtime. Use the versions with printk format strings
76 * to provide better diagnostics.
80 void warn_slowpath_fmt(const char *file
, const int line
,
81 const char *fmt
, ...);
83 void warn_slowpath_fmt_taint(const char *file
, const int line
, unsigned taint
,
84 const char *fmt
, ...);
85 extern void warn_slowpath_null(const char *file
, const int line
);
86 #define WANT_WARN_ON_SLOWPATH
87 #define __WARN() warn_slowpath_null(__FILE__, __LINE__)
88 #define __WARN_printf(arg...) warn_slowpath_fmt(__FILE__, __LINE__, arg)
89 #define __WARN_printf_taint(taint, arg...) \
90 warn_slowpath_fmt_taint(__FILE__, __LINE__, taint, arg)
92 #define __WARN() __WARN_TAINT(TAINT_WARN)
93 #define __WARN_printf(arg...) do { printk(arg); __WARN(); } while (0)
94 #define __WARN_printf_taint(taint, arg...) \
95 do { printk(arg); __WARN_TAINT(taint); } while (0)
98 /* used internally by panic.c */
102 void __warn(const char *file
, int line
, void *caller
, unsigned taint
,
103 struct pt_regs
*regs
, struct warn_args
*args
);
106 #define WARN_ON(condition) ({ \
107 int __ret_warn_on = !!(condition); \
108 if (unlikely(__ret_warn_on)) \
110 unlikely(__ret_warn_on); \
115 #define WARN(condition, format...) ({ \
116 int __ret_warn_on = !!(condition); \
117 if (unlikely(__ret_warn_on)) \
118 __WARN_printf(format); \
119 unlikely(__ret_warn_on); \
123 #define WARN_TAINT(condition, taint, format...) ({ \
124 int __ret_warn_on = !!(condition); \
125 if (unlikely(__ret_warn_on)) \
126 __WARN_printf_taint(taint, format); \
127 unlikely(__ret_warn_on); \
131 #define WARN_ON_ONCE(condition) ({ \
132 static bool __section(.data.unlikely) __warned; \
133 int __ret_warn_once = !!(condition); \
135 if (unlikely(__ret_warn_once && !__warned)) { \
139 unlikely(__ret_warn_once); \
143 #define WARN_ONCE(condition, format...) ({ \
144 static bool __section(.data.unlikely) __warned; \
145 int __ret_warn_once = !!(condition); \
147 if (unlikely(__ret_warn_once && !__warned)) { \
151 unlikely(__ret_warn_once); \
154 #define WARN_TAINT_ONCE(condition, taint, format...) ({ \
155 static bool __section(.data.unlikely) __warned; \
156 int __ret_warn_once = !!(condition); \
158 if (unlikely(__ret_warn_once && !__warned)) { \
160 WARN_TAINT(1, taint, format); \
162 unlikely(__ret_warn_once); \
165 #else /* !CONFIG_BUG */
166 #ifndef HAVE_ARCH_BUG
167 #define BUG() do {} while (1)
170 #ifndef HAVE_ARCH_BUG_ON
171 #define BUG_ON(condition) do { if (condition) BUG(); } while (0)
174 #ifndef HAVE_ARCH_WARN_ON
175 #define WARN_ON(condition) ({ \
176 int __ret_warn_on = !!(condition); \
177 unlikely(__ret_warn_on); \
182 #define WARN(condition, format...) ({ \
183 int __ret_warn_on = !!(condition); \
185 unlikely(__ret_warn_on); \
189 #define WARN_ON_ONCE(condition) WARN_ON(condition)
190 #define WARN_ONCE(condition, format...) WARN(condition, format)
191 #define WARN_TAINT(condition, taint, format...) WARN(condition, format)
192 #define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format)
197 * WARN_ON_SMP() is for cases that the warning is either
198 * meaningless for !SMP or may even cause failures.
199 * This is usually used for cases that we have
200 * WARN_ON(!spin_is_locked(&lock)) checks, as spin_is_locked()
201 * returns 0 for uniprocessor settings.
202 * It can also be used with values that are only defined
212 * void func(struct foo *zoot)
214 * WARN_ON_SMP(!zoot->bar);
216 * For CONFIG_SMP, WARN_ON_SMP() should act the same as WARN_ON(),
217 * and should be a nop and return false for uniprocessor.
219 * if (WARN_ON_SMP(x)) returns true only when CONFIG_SMP is set
223 # define WARN_ON_SMP(x) WARN_ON(x)
226 * Use of ({0;}) because WARN_ON_SMP(x) may be used either as
227 * a stand alone line statement or as a condition in an if ()
229 * A simple "0" would cause gcc to give a "statement has no effect"
232 # define WARN_ON_SMP(x) ({0;})
235 #endif /* __ASSEMBLY__ */