diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-10-28 12:40:26 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-11-21 15:24:59 +0000 |
commit | 719c9d1489bad6ff26fa1f6a7e3f760935663398 (patch) | |
tree | b1b478ae3140d51aee6e655130bac11881dd8edf /arch/arm/kernel | |
parent | 1381c5a65fc6abc8b22f179da6a6577b0deb0687 (diff) | |
download | blackbird-op-linux-719c9d1489bad6ff26fa1f6a7e3f760935663398.tar.gz blackbird-op-linux-719c9d1489bad6ff26fa1f6a7e3f760935663398.zip |
ARM: add machine name to stack dump output
The generic dump_stack() code provides the facility to include the
machine name in the stack dump, which can be useful information. Add
a call to dump_stack_set_arch_desc() for the generic code to print
this information.
Tested-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index c03106378b49..8361652b6dab 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -900,6 +900,7 @@ void __init setup_arch(char **cmdline_p) mdesc = setup_machine_tags(__atags_pointer, __machine_arch_type); machine_desc = mdesc; machine_name = mdesc->name; + dump_stack_set_arch_desc("%s", mdesc->name); if (mdesc->reboot_mode != REBOOT_HARD) reboot_mode = mdesc->reboot_mode; |