@@ -56,43 +56,35 @@ void arch_setup_new_exec(void);
5656
5757/*
5858 * thread information flags bit numbers
59+ *
60+ * Tell the generic TIF infrastructure which special bits s390 supports
5961 */
60- #define TIF_NOTIFY_RESUME 0 /* callback before returning to user */
61- #define TIF_SIGPENDING 1 /* signal pending */
62- #define TIF_NEED_RESCHED 2 /* rescheduling necessary */
63- #define TIF_NEED_RESCHED_LAZY 3 /* lazy rescheduling needed */
64- #define TIF_UPROBE 4 /* breakpointed or single-stepping */
65- #define TIF_PATCH_PENDING 5 /* pending live patching update */
66- #define TIF_ASCE_PRIMARY 6 /* primary asce is kernel asce */
67- #define TIF_NOTIFY_SIGNAL 7 /* signal notifications exist */
68- #define TIF_GUARDED_STORAGE 8 /* load guarded storage control block */
69- #define TIF_ISOLATE_BP_GUEST 9 /* Run KVM guests with isolated BP */
70- #define TIF_PER_TRAP 10 /* Need to handle PER trap on exit to usermode */
71- #define TIF_31BIT 16 /* 32bit process */
72- #define TIF_MEMDIE 17 /* is terminating due to OOM killer */
73- #define TIF_RESTORE_SIGMASK 18 /* restore signal mask in do_signal() */
74- #define TIF_SINGLE_STEP 19 /* This task is single stepped */
75- #define TIF_BLOCK_STEP 20 /* This task is block stepped */
76- #define TIF_UPROBE_SINGLESTEP 21 /* This task is uprobe single stepped */
62+ #define HAVE_TIF_NEED_RESCHED_LAZY
63+ #define HAVE_TIF_RESTORE_SIGMASK
64+
65+ #include <asm-generic/thread_info_tif.h>
66+
67+ /* Architecture specific bits */
68+ #define TIF_ASCE_PRIMARY 16 /* primary asce is kernel asce */
69+ #define TIF_GUARDED_STORAGE 17 /* load guarded storage control block */
70+ #define TIF_ISOLATE_BP_GUEST 18 /* Run KVM guests with isolated BP */
71+ #define TIF_PER_TRAP 19 /* Need to handle PER trap on exit to usermode */
72+ #define TIF_31BIT 20 /* 32bit process */
73+ #define TIF_SINGLE_STEP 21 /* This task is single stepped */
74+ #define TIF_BLOCK_STEP 22 /* This task is block stepped */
75+ #define TIF_UPROBE_SINGLESTEP 23 /* This task is uprobe single stepped */
76+
77+ /* These could move over to SYSCALL_WORK bits, no? */
7778#define TIF_SYSCALL_TRACE 24 /* syscall trace active */
7879#define TIF_SYSCALL_AUDIT 25 /* syscall auditing active */
7980#define TIF_SECCOMP 26 /* secure computing */
8081#define TIF_SYSCALL_TRACEPOINT 27 /* syscall tracepoint instrumentation */
8182
82- #define _TIF_NOTIFY_RESUME BIT(TIF_NOTIFY_RESUME)
83- #define _TIF_SIGPENDING BIT(TIF_SIGPENDING)
84- #define _TIF_NEED_RESCHED BIT(TIF_NEED_RESCHED)
85- #define _TIF_NEED_RESCHED_LAZY BIT(TIF_NEED_RESCHED_LAZY)
86- #define _TIF_UPROBE BIT(TIF_UPROBE)
87- #define _TIF_PATCH_PENDING BIT(TIF_PATCH_PENDING)
8883#define _TIF_ASCE_PRIMARY BIT(TIF_ASCE_PRIMARY)
89- #define _TIF_NOTIFY_SIGNAL BIT(TIF_NOTIFY_SIGNAL)
9084#define _TIF_GUARDED_STORAGE BIT(TIF_GUARDED_STORAGE)
9185#define _TIF_ISOLATE_BP_GUEST BIT(TIF_ISOLATE_BP_GUEST)
9286#define _TIF_PER_TRAP BIT(TIF_PER_TRAP)
9387#define _TIF_31BIT BIT(TIF_31BIT)
94- #define _TIF_MEMDIE BIT(TIF_MEMDIE)
95- #define _TIF_RESTORE_SIGMASK BIT(TIF_RESTORE_SIGMASK)
9688#define _TIF_SINGLE_STEP BIT(TIF_SINGLE_STEP)
9789#define _TIF_BLOCK_STEP BIT(TIF_BLOCK_STEP)
9890#define _TIF_UPROBE_SINGLESTEP BIT(TIF_UPROBE_SINGLESTEP)
0 commit comments