hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/arch/arm/include/asm/thread_info.h
....@@ -133,15 +133,16 @@
133133 #define TIF_NEED_RESCHED 1 /* rescheduling necessary */
134134 #define TIF_NOTIFY_RESUME 2 /* callback before returning to user */
135135 #define TIF_UPROBE 3 /* breakpointed or singlestepping */
136
-#define TIF_SYSCALL_TRACE 4 /* syscall trace active */
137
-#define TIF_SYSCALL_AUDIT 5 /* syscall auditing active */
138
-#define TIF_SYSCALL_TRACEPOINT 6 /* syscall tracepoint instrumentation */
139
-#define TIF_SECCOMP 7 /* seccomp syscall filtering active */
140
-#define TIF_NOTIFY_SIGNAL 8 /* signal notifications exist */
136
+#define TIF_NOTIFY_SIGNAL 4 /* signal notifications exist */
141137
142138 #define TIF_USING_IWMMXT 17
143139 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */
144
-#define TIF_RESTORE_SIGMASK 20
140
+#define TIF_RESTORE_SIGMASK 19
141
+#define TIF_SYSCALL_TRACE 20 /* syscall trace active */
142
+#define TIF_SYSCALL_AUDIT 21 /* syscall auditing active */
143
+#define TIF_SYSCALL_TRACEPOINT 22 /* syscall tracepoint instrumentation */
144
+#define TIF_SECCOMP 23 /* seccomp syscall filtering active */
145
+
145146
146147 #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
147148 #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)