The patch titled Subject: scripts/decode_stacktrace: look for modules with .ko.debug extension has been added to the -mm tree. Its filename is scripts-decode_stacktrace-look-for-modules-with-kodebug-extension.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-decode_stacktrace-look-for-modules-with-kodebug-extension.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-decode_stacktrace-look-for-modules-with-kodebug-extension.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: Nicolas Boichat <drinkcat@xxxxxxxxxxxx> Subject: scripts/decode_stacktrace: look for modules with .ko.debug extension In Chromium OS kernel builds, we split the debug information as .ko.debug files, and that's what decode_stacktrace.sh needs to use. Relax objfile matching rule to allow any .ko* file to be matched. Link: http://lkml.kernel.org/r/20190521234148.64060-1-drinkcat@xxxxxxxxxxxx Signed-off-by: Nicolas Boichat <drinkcat@xxxxxxxxxxxx> Cc: Marc Zyngier <marc.zyngier@xxxxxxx> Cc: Konstantin Khlebnikov <khlebnikov@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/decode_stacktrace.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/decode_stacktrace.sh~scripts-decode_stacktrace-look-for-modules-with-kodebug-extension +++ a/scripts/decode_stacktrace.sh @@ -28,7 +28,7 @@ parse_symbol() { local objfile=${modcache[$module]} else [[ $modpath == "" ]] && return - local objfile=$(find "$modpath" -name $module.ko -print -quit) + local objfile=$(find "$modpath" -name $module.ko* -print -quit) [[ $objfile == "" ]] && return modcache[$module]=$objfile fi _ Patches currently in -mm which might be from drinkcat@xxxxxxxxxxxx are scripts-decode_stacktrace-match-basepath-using-shell-prefix-operator-not-regex.patch scripts-decode_stacktrace-look-for-modules-with-kodebug-extension.patch mm-failslab-by-default-do-not-fail-allocations-with-direct-reclaim-only.patch