|
@@ -1360,8 +1360,12 @@ static void print_bug_trap(struct pt_regs *regs)
|
|
if (is_warning_bug(bug))
|
|
if (is_warning_bug(bug))
|
|
return;
|
|
return;
|
|
|
|
|
|
|
|
+#ifdef CONFIG_DEBUG_BUGVERBOSE
|
|
printf("kernel BUG at %s:%u!\n",
|
|
printf("kernel BUG at %s:%u!\n",
|
|
bug->file, bug->line);
|
|
bug->file, bug->line);
|
|
|
|
+#else
|
|
|
|
+ printf("kernel BUG at %p!\n", (void *)bug->bug_addr);
|
|
|
|
+#endif
|
|
}
|
|
}
|
|
|
|
|
|
void excprint(struct pt_regs *fp)
|
|
void excprint(struct pt_regs *fp)
|