]> git.baikalelectronics.ru Git - kernel.git/commit
scripts/decode_stacktrace: only strip base path when a prefix of the path
authorMarc Zyngier <marc.zyngier@arm.com>
Fri, 28 Dec 2018 08:31:25 +0000 (00:31 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 28 Dec 2018 20:11:44 +0000 (12:11 -0800)
commit0cf8ce9b9c475a4327172b23ee4ef03aa353962a
tree0ccdb0fb605697cd5627ad17cb18caebd4e013d4
parent9e0ccf2b5ae5933505c11627a59e0d4f53701b55
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: Marc Zyngier <marc.zyngier@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/decode_stacktrace.sh