diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2021-05-13 11:59:23 +0200 |
---|---|---|
committer | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2021-12-17 12:38:21 +0100 |
commit | b0343ab330ae4d6c8d4210de5c16da704c2d4743 (patch) | |
tree | 06f1a3f287966e77a3c64674214bec9c496d4b2a /arch/arm/Kconfig.debug | |
parent | ARM: 9168/1: Add support for Cortex-M55 processor (diff) | |
download | linux-b0343ab330ae4d6c8d4210de5c16da704c2d4743.tar.xz linux-b0343ab330ae4d6c8d4210de5c16da704c2d4743.zip |
ARM: reduce the information printed in call traces
A while back, Linus complained about the numeric values printed by the
ARM backtracing code. Printing these values does not make sense if one
does not have access to the kernel ELF image (as is normally the case
when helping a third party on a mailing list), but if one does, they
can be very useful to find the code, rather than searching for the
function name, and then doing hex math to work out where the backtrace
entry is referring to.
Provide an option to control whether this information is included,
which will only be visible if EXPERT is enabled.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/Kconfig.debug')
-rw-r--r-- | arch/arm/Kconfig.debug | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index 98436702e0c7..07055a503022 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug @@ -81,6 +81,17 @@ endchoice config ARM_UNWIND bool +config BACKTRACE_VERBOSE + bool "Verbose backtrace" + depends on EXPERT + help + When the kernel produces a warning or oops, the kernel prints a + trace of the call chain. This option controls whether we include + the numeric addresses or only include the symbolic information. + + In most cases, say N here, unless you are intending to debug the + kernel and have access to the kernel binary image. + config FRAME_POINTER bool |