diff options
Diffstat (limited to 'arch/x86/include/asm/thread_info.h')
| -rw-r--r-- | arch/x86/include/asm/thread_info.h | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/x86/include/asm/thread_info.h b/arch/x86/include/asm/thread_info.h index 8820a73ae09..b0783520988 100644 --- a/arch/x86/include/asm/thread_info.h +++ b/arch/x86/include/asm/thread_info.h @@ -94,7 +94,8 @@ struct thread_info {  #define TIF_FORCED_TF		24	/* true if TF in eflags artificially */  #define TIF_DEBUGCTLMSR		25	/* uses thread_struct.debugctlmsr */  #define TIF_DS_AREA_MSR		26      /* uses thread_struct.ds_area_msr */ -#define TIF_SYSCALL_FTRACE	27	/* for ftrace syscall instrumentation */ +#define TIF_LAZY_MMU_UPDATES	27	/* task is updating the mmu lazily */ +#define TIF_SYSCALL_FTRACE	28	/* for ftrace syscall instrumentation */  #define _TIF_SYSCALL_TRACE	(1 << TIF_SYSCALL_TRACE)  #define _TIF_NOTIFY_RESUME	(1 << TIF_NOTIFY_RESUME) @@ -116,6 +117,7 @@ struct thread_info {  #define _TIF_FORCED_TF		(1 << TIF_FORCED_TF)  #define _TIF_DEBUGCTLMSR	(1 << TIF_DEBUGCTLMSR)  #define _TIF_DS_AREA_MSR	(1 << TIF_DS_AREA_MSR) +#define _TIF_LAZY_MMU_UPDATES	(1 << TIF_LAZY_MMU_UPDATES)  #define _TIF_SYSCALL_FTRACE	(1 << TIF_SYSCALL_FTRACE)  /* work to do in syscall_trace_enter() */ @@ -152,9 +154,9 @@ struct thread_info {  /* thread information allocation */  #ifdef CONFIG_DEBUG_STACK_USAGE -#define THREAD_FLAGS (GFP_KERNEL | __GFP_ZERO) +#define THREAD_FLAGS (GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO)  #else -#define THREAD_FLAGS GFP_KERNEL +#define THREAD_FLAGS (GFP_KERNEL | __GFP_NOTRACK)  #endif  #define __HAVE_ARCH_THREAD_INFO_ALLOCATOR  |