x86: Print DMI_BOARD_NAME as well as DMI_PRODUCT_NAME from __show_regs()
Robert Hancock observes that DMI_BOARD_NAME is often more useful than DMI_PRODUCT_NAME, especially on standalone motherboards. So, print both. Signed-off-by: Andy Isaacson <adi@hexapodia.org> Cc: Arjan van de Ven <arjan@linux.intel.com> Cc: Robert Hancock <hancockrwd@gmail.com> Cc: Richard Zidlicky <rz@linux-m68k.org> Cc: Andrew Morton <akpm@linux-foundation.org> LKML-Reference: <20091208083021.GB27174@hexapodia.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
814e2c84a7
commit
a1884b8e55
@@ -94,18 +94,21 @@ void exit_thread(void)
|
|||||||
|
|
||||||
void show_regs_common(void)
|
void show_regs_common(void)
|
||||||
{
|
{
|
||||||
const char *board;
|
const char *board, *product;
|
||||||
|
|
||||||
board = dmi_get_system_info(DMI_PRODUCT_NAME);
|
board = dmi_get_system_info(DMI_BOARD_NAME);
|
||||||
if (!board)
|
if (!board)
|
||||||
board = "";
|
board = "";
|
||||||
|
product = dmi_get_system_info(DMI_PRODUCT_NAME);
|
||||||
|
if (!product)
|
||||||
|
product = "";
|
||||||
|
|
||||||
printk("\n");
|
printk("\n");
|
||||||
printk(KERN_INFO "Pid: %d, comm: %.20s %s %s %.*s %s\n",
|
printk(KERN_INFO "Pid: %d, comm: %.20s %s %s %.*s %s/%s\n",
|
||||||
current->pid, current->comm, print_tainted(),
|
current->pid, current->comm, print_tainted(),
|
||||||
init_utsname()->release,
|
init_utsname()->release,
|
||||||
(int)strcspn(init_utsname()->version, " "),
|
(int)strcspn(init_utsname()->version, " "),
|
||||||
init_utsname()->version, board);
|
init_utsname()->version, board, product);
|
||||||
}
|
}
|
||||||
|
|
||||||
void flush_thread(void)
|
void flush_thread(void)
|
||||||
|
Reference in New Issue
Block a user