[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190521234148.64060-1-drinkcat@chromium.org>
Date: Wed, 22 May 2019 07:41:48 +0800
From: Nicolas Boichat <drinkcat@...omium.org>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Marc Zyngier <marc.zyngier@....com>,
Konstantin Khlebnikov <khlebnikov@...dex-team.ru>,
Nicolas Boichat <drinkcat@...omium.org>,
linux-kernel@...r.kernel.org
Subject: [PATCH] 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.
Signed-off-by: Nicolas Boichat <drinkcat@...omium.org>
---
scripts/decode_stacktrace.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/decode_stacktrace.sh b/scripts/decode_stacktrace.sh
index bcdd45df3f5127a..c851c1eb16f9cf7 100755
--- a/scripts/decode_stacktrace.sh
+++ b/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
--
2.21.0.1020.gf2820cf01a-goog
Powered by blists - more mailing lists