x86/fpu: Move mxcsr related code to core
authorThomas Gleixner <tglx@linutronix.de>
Fri, 15 Oct 2021 01:16:31 +0000 (03:16 +0200)
committerBorislav Petkov <bp@suse.de>
Wed, 20 Oct 2021 13:27:28 +0000 (15:27 +0200)
No need to expose that to code which only needs the XCR0 accessors.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20211015011539.740012411@linutronix.de
arch/x86/include/asm/fpu/xcr.h
arch/x86/kernel/fpu/init.c
arch/x86/kernel/fpu/legacy.h
arch/x86/kernel/fpu/regset.c
arch/x86/kernel/fpu/xstate.c
arch/x86/kvm/svm/sev.c

index 1c7ab8d95da5ab2bef213081db153e5b7738a9c8..79f95d3787e2195b85829c09fff255bf09c719a1 100644 (file)
@@ -2,17 +2,6 @@
 #ifndef _ASM_X86_FPU_XCR_H
 #define _ASM_X86_FPU_XCR_H
 
-/*
- * MXCSR and XCR definitions:
- */
-
-static inline void ldmxcsr(u32 mxcsr)
-{
-       asm volatile("ldmxcsr %0" :: "m" (mxcsr));
-}
-
-extern unsigned int mxcsr_feature_mask;
-
 #define XCR_XFEATURE_ENABLED_MASK      0x00000000
 
 static inline u64 xgetbv(u32 index)
index 24873dfe2dbaf89ae7307bacae8d4fa86fbf112b..e77084a6ae7c86bfc886a7d382ce5e01cda1edf0 100644 (file)
@@ -11,6 +11,7 @@
 #include <linux/init.h>
 
 #include "internal.h"
+#include "legacy.h"
 
 /*
  * Initialize the registers found in all CPUs, CR0 and CR4:
index 2ff36b0f79e980b763299a757206db315292b02b..17c26b164c6321ac21717dd70eb567e72abfcb3c 100644 (file)
@@ -4,6 +4,13 @@
 
 #include <asm/fpu/types.h>
 
+extern unsigned int mxcsr_feature_mask;
+
+static inline void ldmxcsr(u32 mxcsr)
+{
+       asm volatile("ldmxcsr %0" :: "m" (mxcsr));
+}
+
 /*
  * Returns 0 on success or the trap number when the operation raises an
  * exception.
index a40150e350b6772a8bd4986cbb13a084fa4870b8..3d8ed45da166aa9b1ade5b079e6f7e39f256af66 100644 (file)
@@ -12,6 +12,7 @@
 
 #include "context.h"
 #include "internal.h"
+#include "legacy.h"
 
 /*
  * The xstateregs_active() routine is the same as the regset_fpregs_active() routine,
index 246a7fea06b1b2ff78aed2959fff8f79633ab5af..f0305b2b227f3d0592f1935506abf82f1a393be5 100644 (file)
@@ -14,8 +14,9 @@
 
 #include <asm/fpu/api.h>
 #include <asm/fpu/internal.h>
-#include <asm/fpu/signal.h>
 #include <asm/fpu/regset.h>
+#include <asm/fpu/signal.h>
+#include <asm/fpu/xcr.h>
 
 #include <asm/tlbflush.h>
 
index c36b5fe4c27ca5bf399db828927ab02e4f7d9ec7..3c57bd09112033f0868f78fe8056b13851346b7e 100644 (file)
 #include <linux/misc_cgroup.h>
 #include <linux/processor.h>
 #include <linux/trace_events.h>
-#include <asm/fpu/internal.h>
 
 #include <asm/pkru.h>
 #include <asm/trapnr.h>
+#include <asm/fpu/xcr.h>
 
 #include "x86.h"
 #include "svm.h"