ARM: renumber bits related to _TIF_WORK_MASK
[sfrench/cifs-2.6.git] / arch / arm / include / asm / thread_info.h
index aecc403b2880493d6925eed075bf405b77ee03cb..7f092cb55a4171548da8e4df3c72708512df9264 100644 (file)
@@ -128,15 +128,16 @@ extern int vfp_restore_user_hwstate(struct user_vfp *,
 #define TIF_NEED_RESCHED       1       /* rescheduling necessary */
 #define TIF_NOTIFY_RESUME      2       /* callback before returning to user */
 #define TIF_UPROBE             3       /* breakpointed or singlestepping */
-#define TIF_SYSCALL_TRACE      4       /* syscall trace active */
-#define TIF_SYSCALL_AUDIT      5       /* syscall auditing active */
-#define TIF_SYSCALL_TRACEPOINT 6       /* syscall tracepoint instrumentation */
-#define TIF_SECCOMP            7       /* seccomp syscall filtering active */
-#define TIF_NOTIFY_SIGNAL      8       /* signal notifications exist */
+#define TIF_NOTIFY_SIGNAL      4       /* signal notifications exist */
 
 #define TIF_USING_IWMMXT       17
 #define TIF_MEMDIE             18      /* is terminating due to OOM killer */
-#define TIF_RESTORE_SIGMASK    20
+#define TIF_RESTORE_SIGMASK    19
+#define TIF_SYSCALL_TRACE      20      /* syscall trace active */
+#define TIF_SYSCALL_AUDIT      21      /* syscall auditing active */
+#define TIF_SYSCALL_TRACEPOINT 22      /* syscall tracepoint instrumentation */
+#define TIF_SECCOMP            23      /* seccomp syscall filtering active */
+
 
 #define _TIF_SIGPENDING                (1 << TIF_SIGPENDING)
 #define _TIF_NEED_RESCHED      (1 << TIF_NEED_RESCHED)