From: Vasily Gorbik Date: Wed, 12 May 2021 17:42:10 +0000 (+0200) Subject: objtool: Fix elf_create_undef_symbol() endianness X-Git-Tag: v5.10.133~3 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fbf60f83e241f0ef967644ca06455f37fcea064b;p=users%2Fdwmw2%2Flinux.git objtool: Fix elf_create_undef_symbol() endianness commit 46c7405df7de8deb97229eacebcee96d61415f3f upstream. Currently x86 cross-compilation fails on big endian system with: x86_64-cross-ld: init/main.o: invalid string offset 488112128 >= 6229 for section `.strtab' Mark new ELF data in elf_create_undef_symbol() as symbol, so that libelf does endianness handling correctly. Fixes: 2f2f7e47f052 ("objtool: Add elf_create_undef_symbol()") Signed-off-by: Vasily Gorbik Signed-off-by: Ingo Molnar Acked-by: Peter Zijlstra Link: https://lore.kernel.org/r/patch-1.thread-6c9df9.git-d39264656387.your-ad-here.call-01620841104-ext-2554@work.hours Signed-off-by: Greg Kroah-Hartman --- diff --git a/tools/objtool/elf.c b/tools/objtool/elf.c index 0fb5b45aec53a..5aa3b4e76479e 100644 --- a/tools/objtool/elf.c +++ b/tools/objtool/elf.c @@ -961,6 +961,7 @@ static int elf_add_string(struct elf *elf, struct section *strtab, char *str) data->d_buf = str; data->d_size = strlen(str) + 1; data->d_align = 1; + data->d_type = ELF_T_SYM; len = strtab->len; strtab->len += data->d_size;