]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
microblaze: Add audit and seccomp thread flags.
authorEdgar E. Iglesias <edgar.iglesias@gmail.com>
Sun, 10 May 2009 12:39:05 +0000 (14:39 +0200)
committerMichal Simek <monstr@monstr.eu>
Tue, 26 May 2009 14:43:22 +0000 (16:43 +0200)
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
arch/microblaze/include/asm/thread_info.h

index a0401d2ef8d59d240cb9893e7eaef4d5c34ff262..7fac44498445f82595431e75c28fcf61a6731e21 100644 (file)
@@ -122,6 +122,8 @@ static inline struct thread_info *current_thread_info(void)
 #define TIF_SINGLESTEP         4
 #define TIF_IRET               5 /* return with iret */
 #define TIF_MEMDIE             6
+#define TIF_SYSCALL_AUDIT      9       /* syscall auditing active */
+#define TIF_SECCOMP            10      /* secure computing */
 #define TIF_FREEZE             14      /* Freezing for suspend */
 
 /* FIXME change in entry.S */
@@ -138,10 +140,17 @@ static inline struct thread_info *current_thread_info(void)
 #define _TIF_IRET              (1<<TIF_IRET)
 #define _TIF_POLLING_NRFLAG    (1<<TIF_POLLING_NRFLAG)
 #define _TIF_FREEZE            (1<<TIF_FREEZE)
+#define _TIF_SYSCALL_AUDIT     (1 << TIF_SYSCALL_AUDIT)
+#define _TIF_SECCOMP           (1 << TIF_SECCOMP)
 #define _TIF_KERNEL_TRACE      (1 << TIF_KERNEL_TRACE)
 
+/* work to do in syscall trace */
+#define _TIF_WORK_SYSCALL_MASK  (_TIF_SYSCALL_TRACE | _TIF_SINGLESTEP | \
+                                _TIF_SYSCALL_AUDIT | _TIF_SECCOMP)
+
 /* work to do on interrupt/exception return */
 #define _TIF_WORK_MASK         0x0000FFFE
+
 /* work to do on any return to u-space */
 #define _TIF_ALLWORK_MASK      0x0000FFFF