]> git.baikalelectronics.ru Git - kernel.git/commit
scripts/faddr2line: Fix vmlinux detection on arm64
authorJosh Poimboeuf <jpoimboe@kernel.org>
Thu, 21 Jul 2022 18:01:23 +0000 (11:01 -0700)
committerIngo Molnar <mingo@kernel.org>
Tue, 2 Aug 2022 20:08:16 +0000 (22:08 +0200)
commit9c69be88d2005b022313a127f5bf0ea89c8826b1
tree094ad4d7431369d63c2bdb9d981508f2302225e5
parent979ad3cc336685ce49cb5c250a628a93382f297b
scripts/faddr2line: Fix vmlinux detection on arm64

Since commit ec79799c5a22 ("faddr2line: Fix overlapping text section
failures, the sequel"), faddr2line is completely broken on arm64.

For some reason, on arm64, the vmlinux ELF object file type is ET_DYN
rather than ET_EXEC.  Check for both when determining whether the object
is vmlinux.

Modules and vmlinux.o have type ET_REL on all arches.

Fixes: ec79799c5a22 ("faddr2line: Fix overlapping text section failures, the sequel")
Reported-by: John Garry <john.garry@huawei.com>
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Tested-by: John Garry <john.garry@huawei.com>
Link: https://lore.kernel.org/r/dad1999737471b06d6188ce4cdb11329aa41682c.1658426357.git.jpoimboe@kernel.org
scripts/faddr2line