[RFC PATCH v2 3/7] objtool: Use target file class size instead of a compiled constant

Peter Zijlstra peterz at infradead.org
Wed May 25 03:59:57 AEST 2022


On Tue, May 24, 2022 at 03:17:43PM +0200, Christophe Leroy wrote:
> -	sec = elf_create_section(elf, relocname, 0, sizeof(GElf_Rela), 0);
> +	if (size == sizeof(u32))
> +		sec = elf_create_section(elf, relocname, 0, sizeof(Elf32_Rela), 0);
> +	else
> +		sec = elf_create_section(elf, relocname, 0, sizeof(GElf_Rela), 0);

Probably best to use Elf64_* here instead of GElf_*.


More information about the Linuxppc-dev mailing list