[SCSI] dmx3191d: fix a NULL pointer dereference
[linux-2.6/openmoko-kernel/knife-kernel.git] / include / linux / seccomp.h
blobcd2773b29a642bb53c73e7c0dfe798b662b6733c
1 #ifndef _LINUX_SECCOMP_H
2 #define _LINUX_SECCOMP_H
4 #include <linux/config.h>
6 #ifdef CONFIG_SECCOMP
8 #define NR_SECCOMP_MODES 1
10 #include <linux/thread_info.h>
11 #include <asm/seccomp.h>
13 typedef struct { int mode; } seccomp_t;
15 extern void __secure_computing(int);
16 static inline void secure_computing(int this_syscall)
18 if (unlikely(test_thread_flag(TIF_SECCOMP)))
19 __secure_computing(this_syscall);
22 static inline int has_secure_computing(struct thread_info *ti)
24 return unlikely(test_ti_thread_flag(ti, TIF_SECCOMP));
27 #else /* CONFIG_SECCOMP */
29 typedef struct { } seccomp_t;
31 #define secure_computing(x) do { } while (0)
32 /* static inline to preserve typechecking */
33 static inline int has_secure_computing(struct thread_info *ti)
35 return 0;
38 #endif /* CONFIG_SECCOMP */
40 #endif /* _LINUX_SECCOMP_H */