arm64: remove unnecessary ifdefs around is_compat_task()
authorLeonardo Bras <leobras@redhat.com>
Tue, 9 Jan 2024 03:46:50 +0000 (00:46 -0300)
committerCatalin Marinas <catalin.marinas@arm.com>
Wed, 28 Feb 2024 18:01:23 +0000 (18:01 +0000)
commit1984c805461f7fc4e96855eb4d94043ffb8f873d
treecbd52aea4eaec2ad15000872c88a6f054944ad1d
parenta743f26d03a96593c0f3d05dc26b388f45de67c9
arm64: remove unnecessary ifdefs around is_compat_task()

Currently some parts of the codebase will test for CONFIG_COMPAT before
testing is_compat_task().

is_compat_task() is a inlined function only present on CONFIG_COMPAT.
On the other hand, for !CONFIG_COMPAT, we have in linux/compat.h:

 #define is_compat_task() (0)

Since we have this define available in every usage of is_compat_task() for
!CONFIG_COMPAT, it's unnecessary to keep the ifdefs, since the compiler is
smart enough to optimize-out those snippets on CONFIG_COMPAT=n

This requires some regset code as well as a few other defines to be made
available on !CONFIG_COMPAT, so some symbols can get resolved before
getting optimized-out.

Signed-off-by: Leonardo Bras <leobras@redhat.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20240109034651.478462-2-leobras@redhat.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/elf.h
arch/arm64/include/asm/fpsimd.h
arch/arm64/kernel/ptrace.c
arch/arm64/kernel/syscall.c