diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-03-18 12:36:42 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:30:58 -0400 |
commit | 127c6f662348cbf2b1c09e6fc2748af316f7d2d6 (patch) | |
tree | 9e6b394e9987b933707856422879922016532533 /include/asm-mips/thread_info.h | |
parent | 53de0d471fe8ddbbeca938cffedb4cc94e04da10 (diff) |
SECCOMP for MIPS.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/thread_info.h')
-rw-r--r-- | include/asm-mips/thread_info.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/asm-mips/thread_info.h b/include/asm-mips/thread_info.h index a70cb0854c8a..66a0c2ae7d65 100644 --- a/include/asm-mips/thread_info.h +++ b/include/asm-mips/thread_info.h | |||
@@ -114,6 +114,7 @@ register struct thread_info *__current_thread_info __asm__("$28"); | |||
114 | #define TIF_SIGPENDING 2 /* signal pending */ | 114 | #define TIF_SIGPENDING 2 /* signal pending */ |
115 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | 115 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
116 | #define TIF_SYSCALL_AUDIT 4 /* syscall auditing active */ | 116 | #define TIF_SYSCALL_AUDIT 4 /* syscall auditing active */ |
117 | #define TIF_SECCOMP 5 /* secure computing */ | ||
117 | #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */ | 118 | #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */ |
118 | #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */ | 119 | #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */ |
119 | #define TIF_MEMDIE 18 | 120 | #define TIF_MEMDIE 18 |
@@ -124,13 +125,14 @@ register struct thread_info *__current_thread_info __asm__("$28"); | |||
124 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | 125 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
125 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) | 126 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
126 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) | 127 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) |
128 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) | ||
127 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) | 129 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) |
128 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 130 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
129 | 131 | ||
130 | #define _TIF_WORK_MASK 0x0000ffef /* work to do on | 132 | /* work to do on interrupt/exception return */ |
131 | interrupt/exception return */ | 133 | #define _TIF_WORK_MASK (0x0000ffef & ~_TIF_SECCOMP) |
132 | #define _TIF_ALLWORK_MASK 0x8000ffff /* work to do on any return to | 134 | /* work to do on any return to u-space */ |
133 | u-space */ | 135 | #define _TIF_ALLWORK_MASK (0x8000ffff & ~_TIF_SECCOMP) |
134 | 136 | ||
135 | #endif /* __KERNEL__ */ | 137 | #endif /* __KERNEL__ */ |
136 | 138 | ||