Re: [PATCH v5 1/2] module: add module_elf_check_arch for module-specific checks
From: Luis Chamberlain <mcgrof@kernel.org>
Date: 2022-11-03 00:00:00
Also in:
linux-modules, lkml
From: Luis Chamberlain <mcgrof@kernel.org>
Date: 2022-11-03 00:00:00
Also in:
linux-modules, lkml
On Mon, Oct 31, 2022 at 10:07:32PM +1000, Nicholas Piggin wrote:
The elf_check_arch() function is also used to test compatibility of usermode binaries. Kernel modules may have more specific requirements, for example powerpc would like to test for ABI version compatibility. Add a weak module_elf_check_arch() that defaults to true, and call it from elf_validity_check(). Cc: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Jessica Yu <jeyu@kernel.org> [np: added changelog, adjust name, rebase] Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Acked-by: Luis Chamberlain <mcgrof@kernel.org> Luis