Lines Matching full:bug
17 #define BUG_GET_TAINT(bug) ((bug)->flags >> 8) argument
52 * Don't use BUG() or BUG_ON() unless there's really no way out; one
56 * it's probably not BUG-worthy.
58 * If you're tempted to BUG(), think again: is completely giving up
63 #define BUG() do { \ macro
64 printk("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
66 panic("BUG!"); \
71 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)
85 * Do not include "BUG"/"WARNING" in format strings manually to make these
159 #define BUG() do { \ macro
166 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)