aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/seccomp.h
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2012-04-17 12:08:48 +1000
committerJames Morris <james.l.morris@oracle.com>2012-04-17 13:22:36 +1000
commitb1fa650c7e6e81ca788fef52b1659295eb82ffdd (patch)
tree88cad5408f07d41243d7bc786c15dbde2de74ab4 /include/linux/seccomp.h
parentDocumentation: prctl/seccomp_filter (diff)
downloadlinux-dev-b1fa650c7e6e81ca788fef52b1659295eb82ffdd.tar.xz
linux-dev-b1fa650c7e6e81ca788fef52b1659295eb82ffdd.zip
seccomp: use a static inline for a function stub
Fixes this error message when CONFIG_SECCOMP is not set: arch/powerpc/kernel/ptrace.c: In function 'do_syscall_trace_enter': arch/powerpc/kernel/ptrace.c:1713:2: error: statement with no effect [-Werror=unused-value] Signed-off-by: Stephen Rothwell <sfr@ozlabs.au.ibm.com> Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'include/linux/seccomp.h')
-rw-r--r--include/linux/seccomp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/seccomp.h b/include/linux/seccomp.h
index 5818e869651b..60f2b350ead7 100644
--- a/include/linux/seccomp.h
+++ b/include/linux/seccomp.h
@@ -90,7 +90,7 @@ static inline int seccomp_mode(struct seccomp *s)
struct seccomp { };
struct seccomp_filter { };
-#define secure_computing(x) 0
+static inline int secure_computing(int this_syscall) { return 0; }
static inline long prctl_get_seccomp(void)
{