The patch titled Subject: arm64: stacktrace: use %pSb for backtrace printing has been added to the -mm tree. Its filename is arm64-stacktrace-use-%psb-for-backtrace-printing.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/arm64-stacktrace-use-%25psb-for-backtrace-printing.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/arm64-stacktrace-use-%25psb-for-backtrace-printing.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Stephen Boyd <swboyd@xxxxxxxxxxxx> Subject: arm64: stacktrace: use %pSb for backtrace printing Let's use the new printk format to print the stacktrace entry when printing a backtrace to the kernel logs. This will include any module's build ID[1] in it so that offline/crash debugging can easily locate the debuginfo for a module via something like debuginfod[2]. Link: https://lkml.kernel.org/r/20210511003845.2429846-7-swboyd@xxxxxxxxxxxx Link: https://fedoraproject.org/wiki/Releases/FeatureBuildId [1] Link: https://sourceware.org/elfutils/Debuginfod.html [2] Signed-off-by: Stephen Boyd <swboyd@xxxxxxxxxxxx> Acked-by: Catalin Marinas <catalin.marinas@xxxxxxx> Cc: Will Deacon <will@xxxxxxxxxx> Cc: Jiri Olsa <jolsa@xxxxxxxxxx> Cc: Alexei Starovoitov <ast@xxxxxxxxxx> Cc: Jessica Yu <jeyu@xxxxxxxxxx> Cc: Evan Green <evgreen@xxxxxxxxxxxx> Cc: Hsin-Yi Wang <hsinyi@xxxxxxxxxxxx> Cc: Petr Mladek <pmladek@xxxxxxxx> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx> Cc: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Matthew Wilcox <willy@xxxxxxxxxxxxx> Cc: Baoquan He <bhe@xxxxxxxxxx> Cc: Borislav Petkov <bp@xxxxxxxxx> Cc: Dave Young <dyoung@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: Konstantin Khlebnikov <khlebnikov@xxxxxxxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Sasha Levin <sashal@xxxxxxxxxx> Cc: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Vivek Goyal <vgoyal@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/arm64/kernel/stacktrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/arm64/kernel/stacktrace.c~arm64-stacktrace-use-%psb-for-backtrace-printing +++ a/arch/arm64/kernel/stacktrace.c @@ -155,7 +155,7 @@ NOKPROBE_SYMBOL(walk_stackframe); static void dump_backtrace_entry(unsigned long where, const char *loglvl) { - printk("%s %pS\n", loglvl, (void *)where); + printk("%s %pSb\n", loglvl, (void *)where); } void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk, _ Patches currently in -mm which might be from swboyd@xxxxxxxxxxxx are buildid-only-consider-gnu-notes-for-build-id-parsing.patch buildid-add-api-to-parse-build-id-out-of-buffer.patch buildid-stash-away-kernels-build-id-on-init.patch dump_stack-add-vmlinux-build-id-to-stack-traces.patch module-add-printk-formats-to-add-module-build-id-to-stacktraces.patch arm64-stacktrace-use-%psb-for-backtrace-printing.patch x86-dumpstack-use-%psb-%pbb-for-backtrace-printing.patch scripts-decode_stacktracesh-support-debuginfod.patch scripts-decode_stacktracesh-silence-stderr-messages-from-addr2line-nm.patch scripts-decode_stacktracesh-indicate-auto-can-be-used-for-base-path.patch buildid-mark-some-arguments-const.patch buildid-fix-kernel-doc-notation.patch kdump-use-vmlinux_build_id-to-simplify.patch