diff options
Diffstat (limited to 'system/qemu-seccomp.c')
-rw-r--r-- | system/qemu-seccomp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/qemu-seccomp.c b/system/qemu-seccomp.c index 98ffce0..f8e1238 100644 --- a/system/qemu-seccomp.c +++ b/system/qemu-seccomp.c @@ -20,7 +20,7 @@ #include "qemu/module.h" #include <sys/prctl.h> #include <seccomp.h> -#include "sysemu/seccomp.h" +#include "system/seccomp.h" #include <linux/seccomp.h> /* For some architectures (notably ARM) cacheflush is not supported until @@ -47,10 +47,10 @@ const struct scmp_arg_cmp sched_setscheduler_arg[] = { }; /* - * See 'NOTES' in 'man 2 clone' - s390 & cross have 'flags' in + * See 'NOTES' in 'man 2 clone' - s390 has 'flags' in * different position to other architectures */ -#if defined(HOST_S390X) || defined(HOST_S390) || defined(HOST_CRIS) +#if defined(HOST_S390X) || defined(HOST_S390) #define CLONE_FLAGS_ARG 1 #else #define CLONE_FLAGS_ARG 0 |