s390/fpu: remove TIF_FPU
authorHeiko Carstens <hca@linux.ibm.com>
Sat, 3 Feb 2024 10:45:19 +0000 (11:45 +0100)
committerHeiko Carstens <hca@linux.ibm.com>
Fri, 16 Feb 2024 13:30:16 +0000 (14:30 +0100)
TIF_FPU is unused - remove it.

Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/include/asm/thread_info.h

index e3f70b94a79b3b042a66679a7a005987c0171ca1..a674c7d25da5a1790367ea238d7b4c5b11327639 100644 (file)
@@ -69,7 +69,6 @@ void arch_setup_new_exec(void);
 #define TIF_PATCH_PENDING      5       /* pending live patching update */
 #define TIF_PGSTE              6       /* New mm's will use 4K page tables */
 #define TIF_NOTIFY_SIGNAL      7       /* signal notifications exist */
-#define TIF_FPU                        8       /* restore FPU registers on exit to usermode */
 #define TIF_ISOLATE_BP_GUEST   9       /* Run KVM guests with isolated BP */
 #define TIF_PER_TRAP           10      /* Need to handle PER trap on exit to usermode */
 
@@ -93,7 +92,6 @@ void arch_setup_new_exec(void);
 #define _TIF_UPROBE            BIT(TIF_UPROBE)
 #define _TIF_GUARDED_STORAGE   BIT(TIF_GUARDED_STORAGE)
 #define _TIF_PATCH_PENDING     BIT(TIF_PATCH_PENDING)
-#define _TIF_FPU               BIT(TIF_FPU)
 #define _TIF_ISOLATE_BP_GUEST  BIT(TIF_ISOLATE_BP_GUEST)
 #define _TIF_PER_TRAP          BIT(TIF_PER_TRAP)