mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] x86/fpu: Remove additional remnants of math emulation
@ 2026-09-26 17:45 Eric Biggers
  2026-09-26 19:29 ` [tip: x86/fpu] " tip-bot2 for Eric Biggers
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Biggers @ 2026-09-26 17:45 UTC (permalink / raw)
  To: x86; +Cc: linux-kernel, Eric Biggers

Remove math_emu.h and the declaration of math_emulate().  They are no
longer used since support for math emulation was removed.

Signed-off-by: Eric Biggers <ebiggers@kernel.org>
---
 arch/x86/include/asm/math_emu.h  | 15 ---------------
 arch/x86/include/asm/processor.h |  2 +-
 arch/x86/include/asm/traps.h     |  2 --
 3 files changed, 1 insertion(+), 18 deletions(-)
 delete mode 100644 arch/x86/include/asm/math_emu.h

diff --git a/arch/x86/include/asm/math_emu.h b/arch/x86/include/asm/math_emu.h
deleted file mode 100644
index 3c42743083ed9..0000000000000
--- a/arch/x86/include/asm/math_emu.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _ASM_X86_MATH_EMU_H
-#define _ASM_X86_MATH_EMU_H
-
-#include <asm/ptrace.h>
-
-/* This structure matches the layout of the data saved to the stack
-   following a device-not-present interrupt, part of it saved
-   automatically by the 80386/80486.
-   */
-struct math_emu_info {
-	long ___orig_eip;
-	struct pt_regs *regs;
-};
-#endif /* _ASM_X86_MATH_EMU_H */
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h
index ec9db0dfa0dff..77488ff5eb8c7 100644
--- a/arch/x86/include/asm/processor.h
+++ b/arch/x86/include/asm/processor.h
@@ -10,7 +10,7 @@ struct mm_struct;
 struct io_bitmap;
 struct vm86;
 
-#include <asm/math_emu.h>
+#include <asm/ptrace.h>
 #include <asm/segment.h>
 #include <asm/types.h>
 #include <uapi/asm/sigcontext.h>
diff --git a/arch/x86/include/asm/traps.h b/arch/x86/include/asm/traps.h
index 3f24cc472ce9b..e13f1025c62e0 100644
--- a/arch/x86/include/asm/traps.h
+++ b/arch/x86/include/asm/traps.h
@@ -37,8 +37,6 @@ static inline int get_si_code(unsigned long condition)
 		return TRAP_BRKPT;
 }
 
-void math_emulate(struct math_emu_info *);
-
 bool fault_in_kernel_space(unsigned long address);
 
 #ifdef CONFIG_VMAP_STACK

base-commit: 67639ee98521c1592190c5c67047067a9c3a3fd5
-- 
2.55.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [tip: x86/fpu] x86/fpu: Remove additional remnants of math emulation
  2026-09-26 17:45 [PATCH] x86/fpu: Remove additional remnants of math emulation Eric Biggers
@ 2026-09-26 19:29 ` tip-bot2 for Eric Biggers
  0 siblings, 0 replies; 2+ messages in thread
From: tip-bot2 for Eric Biggers @ 2026-09-26 19:29 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Eric Biggers, Borislav Petkov (AMD), x86, linux-kernel

The following commit has been merged into the x86/fpu branch of tip:

Commit-ID:     7606d01b963fc3e4e19dd53ca6c5fdd97f7bc1d7
Gitweb:        https://git.kernel.org/tip/7606d01b963fc3e4e19dd53ca6c5fdd97f7bc1d7
Author:        Eric Biggers <ebiggers@kernel.org>
AuthorDate:    Sat, 26 Sep 2026 10:45:45 -07:00
Committer:     Borislav Petkov (AMD) <bp@alien8.de>
CommitterDate: Sat, 26 Sep 2026 12:01:48 -07:00

x86/fpu: Remove additional remnants of math emulation

Remove math_emu.h and the declaration of math_emulate().  They are no
longer used since support for math emulation was removed.

Signed-off-by: Eric Biggers <ebiggers@kernel.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://patch.msgid.link/20260926174545.55533-1-ebiggers@kernel.org
---
 arch/x86/include/asm/math_emu.h  | 15 ---------------
 arch/x86/include/asm/processor.h |  2 +-
 arch/x86/include/asm/traps.h     |  2 --
 3 files changed, 1 insertion(+), 18 deletions(-)
 delete mode 100644 arch/x86/include/asm/math_emu.h

diff --git a/arch/x86/include/asm/math_emu.h b/arch/x86/include/asm/math_emu.h
deleted file mode 100644
index 3c42743..0000000
--- a/arch/x86/include/asm/math_emu.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _ASM_X86_MATH_EMU_H
-#define _ASM_X86_MATH_EMU_H
-
-#include <asm/ptrace.h>
-
-/* This structure matches the layout of the data saved to the stack
-   following a device-not-present interrupt, part of it saved
-   automatically by the 80386/80486.
-   */
-struct math_emu_info {
-	long ___orig_eip;
-	struct pt_regs *regs;
-};
-#endif /* _ASM_X86_MATH_EMU_H */
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h
index ec9db0d..77488ff 100644
--- a/arch/x86/include/asm/processor.h
+++ b/arch/x86/include/asm/processor.h
@@ -10,7 +10,7 @@ struct mm_struct;
 struct io_bitmap;
 struct vm86;
 
-#include <asm/math_emu.h>
+#include <asm/ptrace.h>
 #include <asm/segment.h>
 #include <asm/types.h>
 #include <uapi/asm/sigcontext.h>
diff --git a/arch/x86/include/asm/traps.h b/arch/x86/include/asm/traps.h
index 3f24cc4..e13f102 100644
--- a/arch/x86/include/asm/traps.h
+++ b/arch/x86/include/asm/traps.h
@@ -37,8 +37,6 @@ static inline int get_si_code(unsigned long condition)
 		return TRAP_BRKPT;
 }
 
-void math_emulate(struct math_emu_info *);
-
 bool fault_in_kernel_space(unsigned long address);
 
 #ifdef CONFIG_VMAP_STACK

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-09-26 19:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-26 17:45 [PATCH] x86/fpu: Remove additional remnants of math emulation Eric Biggers
2026-09-26 19:29 ` [tip: x86/fpu] " tip-bot2 for Eric Biggers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®