The quilt patch titled Subject: scripts/decode_stacktrace.sh: better support to ARM32 module stack trace has been removed from the -mm tree. Its filename was scripts-decode_stacktracesh-better-support-to-arm32-module-stack-trace.patch This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Xiong Nandi <xndchn@xxxxxxxxx> Subject: scripts/decode_stacktrace.sh: better support to ARM32 module stack trace Date: Fri, 24 May 2024 12:26:00 +0800 Sometimes there are special characters around module names in stack traces, such as ARM32 with BACKTRACE_VERBOSE in "(%pS)" format, such as: [<806e4845>] (dump_stack_lvl) from [<7f806013>] (hello_init+0x13/0x1000 [test]) In this case, $module will be "[test])", the trace can be decoded by stripping the right parenthesis first: (dump_stack_lvl) from hello_init (/foo/test.c:10) test. Link: https://lkml.kernel.org/r/20240524042600.14738-3-xndchn@xxxxxxxxx Signed-off-by: Xiong Nandi <xndchn@xxxxxxxxx> Suggested-by: Elliot Berman <quic_eberman@xxxxxxxxxxx> Cc: Bjorn Andersson <quic_bjorande@xxxxxxxxxxx> Cc: Carlos Llamas <cmllamas@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/decode_stacktrace.sh | 3 +++ 1 file changed, 3 insertions(+) --- a/scripts/decode_stacktrace.sh~scripts-decode_stacktracesh-better-support-to-arm32-module-stack-trace +++ a/scripts/decode_stacktrace.sh @@ -283,6 +283,9 @@ handle_line() { if [[ ${words[$last]} =~ \[([^]]+)\] ]]; then module=${words[$last]} + # some traces format is "(%pS)", which like "(foo+0x0/0x1 [bar])" + # so $module may like "[bar])". Strip the right parenthesis firstly + module=${module%\)} module=${module#\[} module=${module%\]} modbuildid=${module#* } _ Patches currently in -mm which might be from xndchn@xxxxxxxxx are