x86/fpu: Make os_xrstor_booting() private
authorThomas Gleixner <tglx@linutronix.de>
Fri, 15 Oct 2021 01:16:23 +0000 (03:16 +0200)
committerBorislav Petkov <bp@suse.de>
Wed, 20 Oct 2021 13:27:28 +0000 (15:27 +0200)
It's only required in the xstate init code.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20211015011539.455836597@linutronix.de
arch/x86/include/asm/fpu/internal.h
arch/x86/kernel/fpu/xstate.c

index 5da7528b3b2fc5eec91fabb2695b95f6bfb75585..3ad2ae73efa52b0fa56557435db343121a069d85 100644 (file)
@@ -225,31 +225,6 @@ static inline void fxsave(struct fxregs_state *fx)
                     : "D" (st), "m" (*st), "a" (lmask), "d" (hmask)    \
                     : "memory")
 
-/*
- * This function is called only during boot time when x86 caps are not set
- * up and alternative can not be used yet.
- */
-static inline void os_xrstor_booting(struct xregs_state *xstate)
-{
-       u64 mask = xfeatures_mask_fpstate();
-       u32 lmask = mask;
-       u32 hmask = mask >> 32;
-       int err;
-
-       WARN_ON(system_state != SYSTEM_BOOTING);
-
-       if (boot_cpu_has(X86_FEATURE_XSAVES))
-               XSTATE_OP(XRSTORS, xstate, lmask, hmask, err);
-       else
-               XSTATE_OP(XRSTOR, xstate, lmask, hmask, err);
-
-       /*
-        * We should never fault when copying from a kernel buffer, and the FPU
-        * state we set at boot time should be valid.
-        */
-       WARN_ON_FPU(err);
-}
-
 /*
  * Save processor xstate to xsave area.
  *
index 1f5a66a3867153316df2adb9a9caf2d24fb26852..b712c06cbbfb327e6f3897f2b4624f97a9bcaf15 100644 (file)
@@ -350,6 +350,29 @@ static void __init print_xstate_offset_size(void)
        }
 }
 
+/*
+ * This function is called only during boot time when x86 caps are not set
+ * up and alternative can not be used yet.
+ */
+static __init void os_xrstor_booting(struct xregs_state *xstate)
+{
+       u64 mask = xfeatures_mask_fpstate();
+       u32 lmask = mask;
+       u32 hmask = mask >> 32;
+       int err;
+
+       if (cpu_feature_enabled(X86_FEATURE_XSAVES))
+               XSTATE_OP(XRSTORS, xstate, lmask, hmask, err);
+       else
+               XSTATE_OP(XRSTOR, xstate, lmask, hmask, err);
+
+       /*
+        * We should never fault when copying from a kernel buffer, and the FPU
+        * state we set at boot time should be valid.
+        */
+       WARN_ON_FPU(err);
+}
+
 /*
  * All supported features have either init state all zeros or are
  * handled in setup_init_fpu() individually. This is an explicit