|
@@ -21,10 +21,9 @@ void show_kernel_fault_diag(const char *str, struct pt_regs *regs,
|
|
|
unsigned long address);
|
|
|
void die(const char *str, struct pt_regs *regs, unsigned long address);
|
|
|
|
|
|
-#define BUG() do { \
|
|
|
- dump_stack(); \
|
|
|
- pr_warn("Kernel BUG in %s: %s: %d!\n", \
|
|
|
- __FILE__, __func__, __LINE__); \
|
|
|
+#define BUG() do { \
|
|
|
+ pr_warn("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
|
|
|
+ dump_stack(); \
|
|
|
} while (0)
|
|
|
|
|
|
#define HAVE_ARCH_BUG
|