aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/thread_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/include/asm/thread_info.h')
-rw-r--r--arch/powerpc/include/asm/thread_info.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/powerpc/include/asm/thread_info.h b/arch/powerpc/include/asm/thread_info.h
index 0be6c681cab1..72489799cf02 100644
--- a/arch/powerpc/include/asm/thread_info.h
+++ b/arch/powerpc/include/asm/thread_info.h
@@ -43,7 +43,6 @@ struct thread_info {
43 int cpu; /* cpu we're on */ 43 int cpu; /* cpu we're on */
44 int preempt_count; /* 0 => preemptable, 44 int preempt_count; /* 0 => preemptable,
45 <0 => BUG */ 45 <0 => BUG */
46 struct restart_block restart_block;
47 unsigned long local_flags; /* private flags for thread */ 46 unsigned long local_flags; /* private flags for thread */
48 47
49 /* low level flags - has atomic operations done on it */ 48 /* low level flags - has atomic operations done on it */
@@ -59,9 +58,6 @@ struct thread_info {
59 .exec_domain = &default_exec_domain, \ 58 .exec_domain = &default_exec_domain, \
60 .cpu = 0, \ 59 .cpu = 0, \
61 .preempt_count = INIT_PREEMPT_COUNT, \ 60 .preempt_count = INIT_PREEMPT_COUNT, \
62 .restart_block = { \
63 .fn = do_no_restart_syscall, \
64 }, \
65 .flags = 0, \ 61 .flags = 0, \
66} 62}
67 63
@@ -125,7 +121,7 @@ static inline struct thread_info *current_thread_info(void)
125#define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT) 121#define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT)
126#define _TIF_EMULATE_STACK_STORE (1<<TIF_EMULATE_STACK_STORE) 122#define _TIF_EMULATE_STACK_STORE (1<<TIF_EMULATE_STACK_STORE)
127#define _TIF_NOHZ (1<<TIF_NOHZ) 123#define _TIF_NOHZ (1<<TIF_NOHZ)
128#define _TIF_SYSCALL_T_OR_A (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \ 124#define _TIF_SYSCALL_DOTRACE (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
129 _TIF_SECCOMP | _TIF_SYSCALL_TRACEPOINT | \ 125 _TIF_SECCOMP | _TIF_SYSCALL_TRACEPOINT | \
130 _TIF_NOHZ) 126 _TIF_NOHZ)
131 127