The patch titled Subject: scripts/decode_stacktrace: look for modules with .ko.debug extension has been removed from the -mm tree. Its filename was scripts-decode_stacktrace-look-for-modules-with-kodebug-extension.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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. [drinkcat@xxxxxxxxxxxx: add quotes around name pattern] Link: http://lkml.kernel.org/r/20190528103346.42720-1-drinkcat@xxxxxxxxxxxx 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