summaryrefslogtreecommitdiff
path: root/arch/x86/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-05-14 05:00:26 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2024-05-14 05:00:26 +0300
commit963795f7583c5bd1a93a041b0dc382505bf82d60 (patch)
treef85374e85ec62202bce341ce6c49b9f8bcf71f39 /arch/x86/include
parent31a568b54c0f828b8e45b178a8a7f5907084943b (diff)
parentaf813acf8c06db58c6e21d89d9e45e8cd1512965 (diff)
downloadlinux-963795f7583c5bd1a93a041b0dc382505bf82d60.tar.xz
Merge tag 'x86-fpu-2024-05-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fpu updates from Ingo Molnar: - Fix asm() constraints & modifiers in restore_fpregs_from_fpstate() - Update comments - Robustify the free_vm86() definition * tag 'x86-fpu-2024-05-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/fpu: Update fpu_swap_kvm_fpu() uses in comments as well x86/vm86: Make sure the free_vm86(task) definition uses its parameter even in the !CONFIG_VM86 case x86/fpu: Fix AMD X86_BUG_FXSAVE_LEAK fixup
Diffstat (limited to 'arch/x86/include')
-rw-r--r--arch/x86/include/asm/vm86.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/vm86.h b/arch/x86/include/asm/vm86.h
index 9e8ac5073ecb..62ee19909903 100644
--- a/arch/x86/include/asm/vm86.h
+++ b/arch/x86/include/asm/vm86.h
@@ -84,7 +84,7 @@ static inline int handle_vm86_trap(struct kernel_vm86_regs *a, long b, int c)
static inline void save_v86_state(struct kernel_vm86_regs *a, int b) { }
-#define free_vm86(t) do { } while(0)
+#define free_vm86(task) do { (void)(task); } while(0)
#endif /* CONFIG_VM86 */