#include <linux/compiler.h>
#include <linux/kernel.h>
Go to the source code of this file.
#define BUG |
( |
| ) |
do {} while(0) |
#define BUG_ON |
( |
|
condition | ) |
do { if (condition) ; } while(0) |
#define WARN |
( |
|
condition, |
|
|
|
format... |
|
) |
| |
Value:({ \
int __ret_warn_on = !!(condition); \
unlikely(__ret_warn_on); \
})
Definition at line 126 of file bug.h.
#define WARN_ON |
( |
|
condition | ) |
|
Value:({ \
int __ret_warn_on = !!(condition); \
unlikely(__ret_warn_on); \
})
Definition at line 119 of file bug.h.
#define WARN_ON_ONCE |
( |
|
condition | ) |
|
Value:({ \
int __ret_warn_once = !!(condition); \
\
})
Definition at line 136 of file bug.h.
#define WARN_ON_SMP |
( |
|
x | ) |
({0;}) |
#define WARN_ONCE |
( |
|
condition, |
|
|
|
format... |
|
) |
| |
Value:({ \
int __ret_warn_once = !!(condition); \
\
})
Definition at line 146 of file bug.h.
#define WARN_TAINT |
( |
|
condition, |
|
|
|
taint, |
|
|
|
format... |
|
) |
| WARN_ON(condition) |
#define WARN_TAINT_ONCE |
( |
|
condition, |
|
|
|
taint, |
|
|
|
format... |
|
) |
| |
Value:({ \
int __ret_warn_once = !!(condition); \
\
})
Definition at line 156 of file bug.h.