dump_stack: unify debug information printed by show_regs()
[deliverable/linux.git] / arch / x86 / kernel / process.c
index 14fcf55a5c5b7c0ac5257050ac2e7b679dfff78f..607af0d4d5ef5f34afc0d5e7caad375dafff6663 100644 (file)
@@ -121,30 +121,6 @@ void exit_thread(void)
        drop_fpu(me);
 }
 
-void show_regs_common(void)
-{
-       const char *vendor, *product, *board;
-
-       vendor = dmi_get_system_info(DMI_SYS_VENDOR);
-       if (!vendor)
-               vendor = "";
-       product = dmi_get_system_info(DMI_PRODUCT_NAME);
-       if (!product)
-               product = "";
-
-       /* Board Name is optional */
-       board = dmi_get_system_info(DMI_BOARD_NAME);
-
-       printk(KERN_DEFAULT "Pid: %d, comm: %.20s %s %s %.*s %s %s%s%s\n",
-              current->pid, current->comm, print_tainted(),
-              init_utsname()->release,
-              (int)strcspn(init_utsname()->version, " "),
-              init_utsname()->version,
-              vendor, product,
-              board ? "/" : "",
-              board ? board : "");
-}
-
 void flush_thread(void)
 {
        struct task_struct *tsk = current;
This page took 0.064664 seconds and 5 git commands to generate.