Skip to content

Commit c7ac5a0

Browse files
svens-s390KAGA-KOKO
authored andcommitted
s390/entry: Remove unused TIF flags
The conversion of s390 to generic entry missed to remove the TIF_SYSCALL*/TIF_SECCOMP flags. Remove them as they are unused now. Fixes: 56e62a7 ("s390: convert to generic entry") Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Heiko Carstens <hca@linux.ibm.com>
1 parent 06e5b72 commit c7ac5a0

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

arch/s390/include/asm/thread_info.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,6 @@ void arch_setup_new_exec(void);
7474
#define TIF_BLOCK_STEP 22 /* This task is block stepped */
7575
#define TIF_UPROBE_SINGLESTEP 23 /* This task is uprobe single stepped */
7676

77-
/* These could move over to SYSCALL_WORK bits, no? */
78-
#define TIF_SYSCALL_TRACE 24 /* syscall trace active */
79-
#define TIF_SYSCALL_AUDIT 25 /* syscall auditing active */
80-
#define TIF_SECCOMP 26 /* secure computing */
81-
#define TIF_SYSCALL_TRACEPOINT 27 /* syscall tracepoint instrumentation */
82-
8377
#define _TIF_ASCE_PRIMARY BIT(TIF_ASCE_PRIMARY)
8478
#define _TIF_GUARDED_STORAGE BIT(TIF_GUARDED_STORAGE)
8579
#define _TIF_ISOLATE_BP_GUEST BIT(TIF_ISOLATE_BP_GUEST)
@@ -88,9 +82,5 @@ void arch_setup_new_exec(void);
8882
#define _TIF_SINGLE_STEP BIT(TIF_SINGLE_STEP)
8983
#define _TIF_BLOCK_STEP BIT(TIF_BLOCK_STEP)
9084
#define _TIF_UPROBE_SINGLESTEP BIT(TIF_UPROBE_SINGLESTEP)
91-
#define _TIF_SYSCALL_TRACE BIT(TIF_SYSCALL_TRACE)
92-
#define _TIF_SYSCALL_AUDIT BIT(TIF_SYSCALL_AUDIT)
93-
#define _TIF_SECCOMP BIT(TIF_SECCOMP)
94-
#define _TIF_SYSCALL_TRACEPOINT BIT(TIF_SYSCALL_TRACEPOINT)
9585

9686
#endif /* _ASM_THREAD_INFO_H */

0 commit comments

Comments
 (0)