diff options
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/include/asm/thread_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ia64/include/asm/thread_info.h b/arch/ia64/include/asm/thread_info.h index 5957cf61f898..5b17418b4223 100644 --- a/arch/ia64/include/asm/thread_info.h +++ b/arch/ia64/include/asm/thread_info.h | |||
@@ -107,6 +107,7 @@ struct thread_info { | |||
107 | #define TIF_MCA_INIT 18 /* this task is processing MCA or INIT */ | 107 | #define TIF_MCA_INIT 18 /* this task is processing MCA or INIT */ |
108 | #define TIF_DB_DISABLED 19 /* debug trap disabled for fsyscall */ | 108 | #define TIF_DB_DISABLED 19 /* debug trap disabled for fsyscall */ |
109 | #define TIF_RESTORE_RSE 21 /* user RBS is newer than kernel RBS */ | 109 | #define TIF_RESTORE_RSE 21 /* user RBS is newer than kernel RBS */ |
110 | #define TIF_POLLING_NRFLAG 22 /* idle is polling for TIF_NEED_RESCHED */ | ||
110 | 111 | ||
111 | #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) | 112 | #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) |
112 | #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) | 113 | #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) |
@@ -118,6 +119,7 @@ struct thread_info { | |||
118 | #define _TIF_MCA_INIT (1 << TIF_MCA_INIT) | 119 | #define _TIF_MCA_INIT (1 << TIF_MCA_INIT) |
119 | #define _TIF_DB_DISABLED (1 << TIF_DB_DISABLED) | 120 | #define _TIF_DB_DISABLED (1 << TIF_DB_DISABLED) |
120 | #define _TIF_RESTORE_RSE (1 << TIF_RESTORE_RSE) | 121 | #define _TIF_RESTORE_RSE (1 << TIF_RESTORE_RSE) |
122 | #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) | ||
121 | 123 | ||
122 | /* "work to do on user-return" bits */ | 124 | /* "work to do on user-return" bits */ |
123 | #define TIF_ALLWORK_MASK (_TIF_SIGPENDING|_TIF_NOTIFY_RESUME|_TIF_SYSCALL_AUDIT|\ | 125 | #define TIF_ALLWORK_MASK (_TIF_SIGPENDING|_TIF_NOTIFY_RESUME|_TIF_SYSCALL_AUDIT|\ |
@@ -125,7 +127,6 @@ struct thread_info { | |||
125 | /* like TIF_ALLWORK_BITS but sans TIF_SYSCALL_TRACE or TIF_SYSCALL_AUDIT */ | 127 | /* like TIF_ALLWORK_BITS but sans TIF_SYSCALL_TRACE or TIF_SYSCALL_AUDIT */ |
126 | #define TIF_WORK_MASK (TIF_ALLWORK_MASK&~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT)) | 128 | #define TIF_WORK_MASK (TIF_ALLWORK_MASK&~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT)) |
127 | 129 | ||
128 | #define TS_POLLING 1 /* true if in idle loop and not sleeping */ | ||
129 | #define TS_RESTORE_SIGMASK 2 /* restore signal mask in do_signal() */ | 130 | #define TS_RESTORE_SIGMASK 2 /* restore signal mask in do_signal() */ |
130 | 131 | ||
131 | #ifndef __ASSEMBLY__ | 132 | #ifndef __ASSEMBLY__ |