From 7bdd8b2c56b883af3e65b261cd7c942104dc2ecc Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 5 Mar 2022 13:38:41 +0100 Subject: dashboard/config/linux: enable CONFIG_BACKTRACE_VERBOSE for arm W/o this config arm stack traces don't include PC which we expect when parsing stack traces. It was added in May 13 2021, and it seems since then we classified all arm reports as corrupted. --- dashboard/config/linux/bits/arm.yml | 2 ++ dashboard/config/linux/upstream-arm-full-base.config | 2 +- dashboard/config/linux/upstream-arm-full.config | 2 +- dashboard/config/linux/upstream-arm-kasan-base.config | 2 +- dashboard/config/linux/upstream-arm-kasan.config | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) (limited to 'dashboard') diff --git a/dashboard/config/linux/bits/arm.yml b/dashboard/config/linux/bits/arm.yml index a67e4f954..b9b6337a6 100644 --- a/dashboard/config/linux/bits/arm.yml +++ b/dashboard/config/linux/bits/arm.yml @@ -26,6 +26,8 @@ config: # The other one (UNWINDER_ARM) leads to unparsable oopses (no indication of stack start). - UNWINDER_FRAME_POINTER + # Print PCs in stack traces otherwise we fail to parse oopses. + - BACKTRACE_VERBOSE # Presumably this gives more interesting coverage. - HIGHMEM diff --git a/dashboard/config/linux/upstream-arm-full-base.config b/dashboard/config/linux/upstream-arm-full-base.config index 244be8674..d6cf2479e 100644 --- a/dashboard/config/linux/upstream-arm-full-base.config +++ b/dashboard/config/linux/upstream-arm-full-base.config @@ -4438,7 +4438,7 @@ CONFIG_PROBE_EVENTS=y # CONFIG_ARM_PTDUMP_DEBUGFS is not set CONFIG_UNWINDER_FRAME_POINTER=y # CONFIG_UNWINDER_ARM is not set -# CONFIG_BACKTRACE_VERBOSE is not set +CONFIG_BACKTRACE_VERBOSE=y CONFIG_DEBUG_USER=y # CONFIG_DEBUG_LL is not set CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" diff --git a/dashboard/config/linux/upstream-arm-full.config b/dashboard/config/linux/upstream-arm-full.config index 22556ce62..b8c8ec318 100644 --- a/dashboard/config/linux/upstream-arm-full.config +++ b/dashboard/config/linux/upstream-arm-full.config @@ -8430,7 +8430,7 @@ CONFIG_PROBE_EVENTS=y # CONFIG_ARM_PTDUMP_DEBUGFS is not set CONFIG_UNWINDER_FRAME_POINTER=y # CONFIG_UNWINDER_ARM is not set -# CONFIG_BACKTRACE_VERBOSE is not set +CONFIG_BACKTRACE_VERBOSE=y CONFIG_DEBUG_USER=y # CONFIG_DEBUG_LL is not set CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" diff --git a/dashboard/config/linux/upstream-arm-kasan-base.config b/dashboard/config/linux/upstream-arm-kasan-base.config index 08f26b17a..70ae81d67 100644 --- a/dashboard/config/linux/upstream-arm-kasan-base.config +++ b/dashboard/config/linux/upstream-arm-kasan-base.config @@ -4383,7 +4383,7 @@ CONFIG_PROBE_EVENTS=y # CONFIG_ARM_PTDUMP_DEBUGFS is not set CONFIG_UNWINDER_FRAME_POINTER=y # CONFIG_UNWINDER_ARM is not set -# CONFIG_BACKTRACE_VERBOSE is not set +CONFIG_BACKTRACE_VERBOSE=y CONFIG_DEBUG_USER=y # CONFIG_DEBUG_LL is not set CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" diff --git a/dashboard/config/linux/upstream-arm-kasan.config b/dashboard/config/linux/upstream-arm-kasan.config index 6d3fe1b0f..ec4ae4c6a 100644 --- a/dashboard/config/linux/upstream-arm-kasan.config +++ b/dashboard/config/linux/upstream-arm-kasan.config @@ -7074,7 +7074,7 @@ CONFIG_PROBE_EVENTS=y # CONFIG_ARM_PTDUMP_DEBUGFS is not set CONFIG_UNWINDER_FRAME_POINTER=y # CONFIG_UNWINDER_ARM is not set -# CONFIG_BACKTRACE_VERBOSE is not set +CONFIG_BACKTRACE_VERBOSE=y CONFIG_DEBUG_USER=y # CONFIG_DEBUG_LL is not set CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" -- cgit mrf-deployment