Skip to content
Snippets Groups Projects
Commit 67a28de4 authored by Marc Zyngier's avatar Marc Zyngier Committed by Linus Torvalds
Browse files

scripts/decode_stacktrace: only strip base path when a prefix of the path

Running something like:

	decodecode vmlinux .

leads to interested results where not only the leading "." gets stripped
from the displayed paths, but also anywhere in the string, displaying
something like:

	kvm_vcpu_check_block (arch/arm64/kvm/virt/kvm/kvm_mainc:2141)

which doesn't help further processing.

Fix it by only stripping the base path if it is a prefix of the path.

Link: http://lkml.kernel.org/r/20181210174659.31054-3-marc.zyngier@arm.com


Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c5cfb62f
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,7 @@ parse_symbol() { ...@@ -78,7 +78,7 @@ parse_symbol() {
fi fi
# Strip out the base of the path # Strip out the base of the path
code=${code//$basepath/""} code=${code//^$basepath/""}
# In the case of inlines, move everything to same line # In the case of inlines, move everything to same line
code=${code//$'\n'/' '} code=${code//$'\n'/' '}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment