mips: Set dump-stack arch description
authorSerge Semin <fancer.lancer@gmail.com>
Sat, 2 Dec 2023 11:14:23 +0000 (14:14 +0300)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Thu, 21 Dec 2023 14:33:44 +0000 (15:33 +0100)
In the framework of the MIPS architecture the mips_set_machine_name()
method is defined to set the machine name. The name currently is only used
in the /proc/cpuinfo file content generation. Let's have it utilized to
mach-personalize the dump-stack data too in a way it's done on ARM, ARM64,
RISC-V, etc.

Signed-off-by: Serge Semin <fancer.lancer@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/kernel/prom.c

index f88ce78..6062e6f 100644 (file)
@@ -28,6 +28,8 @@ __init void mips_set_machine_name(const char *name)
 
        strscpy(mips_machine_name, name, sizeof(mips_machine_name));
        pr_info("MIPS: machine is %s\n", mips_get_machine_name());
+
+       dump_stack_set_arch_desc(name);
 }
 
 char *mips_get_machine_name(void)