]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qemu-seccomp.c
seccomp: Whitelist cacheflush since 2.2.0 not 2.2.3
[mirror_qemu.git] / qemu-seccomp.c
index 2866e3c2a6605d8432d8e0156cd830fccdadaada..138ee022a8fe32f110cb19a7a4c9b099e7536466 100644 (file)
 #include <seccomp.h>
 #include "sysemu/seccomp.h"
 
+/* For some architectures (notably ARM) cacheflush is not supported until
+ * libseccomp 2.2.3, but configure enforces that we are using a more recent
+ * version on those hosts, so it is OK for this check to be less strict.
+ */
 #if SCMP_VER_MAJOR >= 3
   #define HAVE_CACHEFLUSH
-#elif SCMP_VER_MAJOR == 2 && SCMP_VER_MINOR >= 3
-  #define HAVE_CACHEFLUSH
-#elif SCMP_VER_MAJOR == 2 && SCMP_VER_MINOR == 2 && SCMP_VER_MICRO >= 3
+#elif SCMP_VER_MAJOR == 2 && SCMP_VER_MINOR >= 2
   #define HAVE_CACHEFLUSH
 #endif