|
@@ -21,6 +21,7 @@
|
|
|
#include <linux/debug_locks.h>
|
|
|
#include <linux/random.h>
|
|
|
#include <linux/kallsyms.h>
|
|
|
+#include <linux/dmi.h>
|
|
|
|
|
|
int panic_on_oops;
|
|
|
static unsigned long tainted_mask;
|
|
@@ -325,11 +326,16 @@ void warn_slowpath(const char *file, int line, const char *fmt, ...)
|
|
|
va_list args;
|
|
|
char function[KSYM_SYMBOL_LEN];
|
|
|
unsigned long caller = (unsigned long)__builtin_return_address(0);
|
|
|
+ const char *board;
|
|
|
+
|
|
|
sprint_symbol(function, caller);
|
|
|
|
|
|
printk(KERN_WARNING "------------[ cut here ]------------\n");
|
|
|
printk(KERN_WARNING "WARNING: at %s:%d %s()\n", file,
|
|
|
line, function);
|
|
|
+ board = dmi_get_system_info(DMI_PRODUCT_NAME);
|
|
|
+ if (board)
|
|
|
+ printk(KERN_WARNING "Hardware name: %s\n", board);
|
|
|
|
|
|
if (fmt) {
|
|
|
va_start(args, fmt);
|