@@ -61,7 +61,6 @@ void arch_setup_new_exec(void);
61
61
/*
62
62
* thread information flags bit numbers
63
63
*/
64
- /* _TIF_WORK bits */
65
64
#define TIF_NOTIFY_RESUME 0 /* callback before returning to user */
66
65
#define TIF_SIGPENDING 1 /* signal pending */
67
66
#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
@@ -72,33 +71,33 @@ void arch_setup_new_exec(void);
72
71
#define TIF_NOTIFY_SIGNAL 7 /* signal notifications exist */
73
72
#define TIF_ISOLATE_BP_GUEST 9 /* Run KVM guests with isolated BP */
74
73
#define TIF_PER_TRAP 10 /* Need to handle PER trap on exit to usermode */
75
-
76
74
#define TIF_31BIT 16 /* 32bit process */
77
75
#define TIF_MEMDIE 17 /* is terminating due to OOM killer */
78
76
#define TIF_RESTORE_SIGMASK 18 /* restore signal mask in do_signal() */
79
77
#define TIF_SINGLE_STEP 19 /* This task is single stepped */
80
78
#define TIF_BLOCK_STEP 20 /* This task is block stepped */
81
79
#define TIF_UPROBE_SINGLESTEP 21 /* This task is uprobe single stepped */
82
-
83
- /* _TIF_TRACE bits */
84
80
#define TIF_SYSCALL_TRACE 24 /* syscall trace active */
85
81
#define TIF_SYSCALL_AUDIT 25 /* syscall auditing active */
86
82
#define TIF_SECCOMP 26 /* secure computing */
87
83
#define TIF_SYSCALL_TRACEPOINT 27 /* syscall tracepoint instrumentation */
88
84
89
85
#define _TIF_NOTIFY_RESUME BIT(TIF_NOTIFY_RESUME)
90
- #define _TIF_NOTIFY_SIGNAL BIT(TIF_NOTIFY_SIGNAL)
91
86
#define _TIF_SIGPENDING BIT(TIF_SIGPENDING)
92
87
#define _TIF_NEED_RESCHED BIT(TIF_NEED_RESCHED)
93
88
#define _TIF_UPROBE BIT(TIF_UPROBE)
94
89
#define _TIF_GUARDED_STORAGE BIT(TIF_GUARDED_STORAGE)
95
90
#define _TIF_PATCH_PENDING BIT(TIF_PATCH_PENDING)
91
+ #define _TIF_PGSTE BIT(TIF_PGSTE)
92
+ #define _TIF_NOTIFY_SIGNAL BIT(TIF_NOTIFY_SIGNAL)
96
93
#define _TIF_ISOLATE_BP_GUEST BIT(TIF_ISOLATE_BP_GUEST)
97
94
#define _TIF_PER_TRAP BIT(TIF_PER_TRAP)
98
-
99
95
#define _TIF_31BIT BIT(TIF_31BIT)
96
+ #define _TIF_MEMDIE BIT(TIF_MEMDIE)
97
+ #define _TIF_RESTORE_SIGMASK BIT(TIF_RESTORE_SIGMASK)
100
98
#define _TIF_SINGLE_STEP BIT(TIF_SINGLE_STEP)
101
-
99
+ #define _TIF_BLOCK_STEP BIT(TIF_BLOCK_STEP)
100
+ #define _TIF_UPROBE_SINGLESTEP BIT(TIF_UPROBE_SINGLESTEP)
102
101
#define _TIF_SYSCALL_TRACE BIT(TIF_SYSCALL_TRACE)
103
102
#define _TIF_SYSCALL_AUDIT BIT(TIF_SYSCALL_AUDIT)
104
103
#define _TIF_SECCOMP BIT(TIF_SECCOMP)
0 commit comments