]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
arm64: efi: Remove CONFIG_VMAP_STACK check
authorBreno Leitao <leitao@debian.org>
Mon, 7 Jul 2025 16:01:02 +0000 (09:01 -0700)
committerWill Deacon <will@kernel.org>
Tue, 8 Jul 2025 12:41:08 +0000 (13:41 +0100)
Remove the CONFIG_VMAP_STACK check in arm64_efi_rt_init() since
VMAP_STACK is now always enabled on arm64.

The arch_alloc_vmap_stack() call will fail to build if VMAP_STACK
is not set, providing sufficient protection without the explicit
runtime check.

Signed-off-by: Breno Leitao <leitao@debian.org>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/20250707-arm64_vmap-v1-2-8de98ca0f91c@debian.org
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/kernel/efi.c

index 62230d6dd919ce243e96a3a1ca39a51b7f83163d..6c371b158b99f700f00cd3fbd86fad3022f772b8 100644 (file)
@@ -215,11 +215,6 @@ static int __init arm64_efi_rt_init(void)
        if (!efi_enabled(EFI_RUNTIME_SERVICES))
                return 0;
 
-       if (!IS_ENABLED(CONFIG_VMAP_STACK)) {
-               clear_bit(EFI_RUNTIME_SERVICES, &efi.flags);
-               return -ENOMEM;
-       }
-
        p = arch_alloc_vmap_stack(THREAD_SIZE, NUMA_NO_NODE);
        if (!p) {
                pr_warn("Failed to allocate EFI runtime stack\n");