ARM: 9283/1: permit non-nested kernel mode NEON in softirq context
authorArd Biesheuvel <ardb@kernel.org>
Thu, 22 Dec 2022 17:52:23 +0000 (18:52 +0100)
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Wed, 11 Jan 2023 16:21:21 +0000 (16:21 +0000)
We currently only permit kernel mode NEON in process context, to avoid
the need to preserve/restore the NEON register file when taking an
exception while running in the kernel.

Like we did on arm64, we can relax this restriction substantially, by
permitting kernel mode NEON from softirq context, while ensuring that
softirq processing is disabled when the NEON is being used in task
context. This guarantees that only NEON context belonging to user space
needs to be preserved and restored, which is already taken care of.

This is especially relevant for network encryption, where incoming
frames are typically handled in softirq context, and deferring software
decryption to a kernel thread or falling back to C code are both
undesirable from a performance PoV.

Tested-by: Martin Willi <martin@strongswan.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
arch/arm/include/asm/simd.h [new file with mode: 0644]
arch/arm/vfp/vfpmodule.c

diff --git a/arch/arm/include/asm/simd.h b/arch/arm/include/asm/simd.h
new file mode 100644 (file)
index 0000000..82191db
--- /dev/null
@@ -0,0 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+
+#include <linux/hardirq.h>
+
+static __must_check inline bool may_use_simd(void)
+{
+       return IS_ENABLED(CONFIG_KERNEL_MODE_NEON) && !in_hardirq();
+}
index 86fb0be41ae14b6c1225f94acc62eb7ab85a0233..01bc48d7384781427cc7172e5140152bdcabe4ba 100644 (file)
@@ -723,12 +723,12 @@ void kernel_neon_begin(void)
        local_bh_disable();
 
        /*
-        * Kernel mode NEON is only allowed outside of interrupt context
-        * with preemption disabled. This will make sure that the kernel
-        * mode NEON register contents never need to be preserved.
+        * Kernel mode NEON is only allowed outside of hardirq context with
+        * preemption and softirq processing disabled. This will make sure that
+        * the kernel mode NEON register contents never need to be preserved.
         */
-       BUG_ON(in_interrupt());
-       cpu = get_cpu();
+       BUG_ON(in_hardirq());
+       cpu = __smp_processor_id();
 
        fpexc = fmrx(FPEXC) | FPEXC_EN;
        fmxr(FPEXC, fpexc);
@@ -744,7 +744,6 @@ void kernel_neon_begin(void)
                vfp_save_state(vfp_current_hw_state[cpu], fpexc);
 #endif
        vfp_current_hw_state[cpu] = NULL;
-       local_bh_enable();
 }
 EXPORT_SYMBOL(kernel_neon_begin);
 
@@ -752,7 +751,7 @@ void kernel_neon_end(void)
 {
        /* Disable the NEON/VFP unit. */
        fmxr(FPEXC, fmrx(FPEXC) & ~FPEXC_EN);
-       put_cpu();
+       local_bh_enable();
 }
 EXPORT_SYMBOL(kernel_neon_end);