diff options
Diffstat (limited to 'include/asm-x86/thread_info_64.h')
-rw-r--r-- | include/asm-x86/thread_info_64.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-x86/thread_info_64.h b/include/asm-x86/thread_info_64.h index e0f41b3deced..ee35fd12b541 100644 --- a/include/asm-x86/thread_info_64.h +++ b/include/asm-x86/thread_info_64.h | |||
@@ -122,6 +122,7 @@ static inline struct thread_info *stack_thread_info(void) | |||
122 | #define TIF_IO_BITMAP 22 /* uses I/O bitmap */ | 122 | #define TIF_IO_BITMAP 22 /* uses I/O bitmap */ |
123 | #define TIF_FREEZE 23 /* is freezing for suspend */ | 123 | #define TIF_FREEZE 23 /* is freezing for suspend */ |
124 | #define TIF_FORCED_TF 24 /* true if TF in eflags artificially */ | 124 | #define TIF_FORCED_TF 24 /* true if TF in eflags artificially */ |
125 | #define TIF_DEBUGCTLMSR 25 /* uses thread_struct.debugctlmsr */ | ||
125 | 126 | ||
126 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | 127 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |
127 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | 128 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
@@ -140,6 +141,7 @@ static inline struct thread_info *stack_thread_info(void) | |||
140 | #define _TIF_IO_BITMAP (1<<TIF_IO_BITMAP) | 141 | #define _TIF_IO_BITMAP (1<<TIF_IO_BITMAP) |
141 | #define _TIF_FREEZE (1<<TIF_FREEZE) | 142 | #define _TIF_FREEZE (1<<TIF_FREEZE) |
142 | #define _TIF_FORCED_TF (1<<TIF_FORCED_TF) | 143 | #define _TIF_FORCED_TF (1<<TIF_FORCED_TF) |
144 | #define _TIF_DEBUGCTLMSR (1<<TIF_DEBUGCTLMSR) | ||
143 | 145 | ||
144 | /* work to do on interrupt/exception return */ | 146 | /* work to do on interrupt/exception return */ |
145 | #define _TIF_WORK_MASK \ | 147 | #define _TIF_WORK_MASK \ |
@@ -151,7 +153,7 @@ static inline struct thread_info *stack_thread_info(void) | |||
151 | (_TIF_SIGPENDING|_TIF_SINGLESTEP|_TIF_MCE_NOTIFY|_TIF_HRTICK_RESCHED) | 153 | (_TIF_SIGPENDING|_TIF_SINGLESTEP|_TIF_MCE_NOTIFY|_TIF_HRTICK_RESCHED) |
152 | 154 | ||
153 | /* flags to check in __switch_to() */ | 155 | /* flags to check in __switch_to() */ |
154 | #define _TIF_WORK_CTXSW (_TIF_DEBUG|_TIF_IO_BITMAP) | 156 | #define _TIF_WORK_CTXSW (_TIF_DEBUG|_TIF_IO_BITMAP|_TIF_DEBUGCTLMSR) |
155 | 157 | ||
156 | #define PREEMPT_ACTIVE 0x10000000 | 158 | #define PREEMPT_ACTIVE 0x10000000 |
157 | 159 | ||