aboutsummaryrefslogtreecommitdiff
path: root/hw/vfio
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2016-06-06 13:57:39 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2016-06-16 18:39:03 +0200
commit02d0e095031b7fda77de8b558465a57659ea79cb (patch)
tree78ce56328efb58eec9c99584b71229bae47d3030 /hw/vfio
parent89266923df71e51f406184d3e8b55d2a3aaa4c4d (diff)
downloadqemu-02d0e095031b7fda77de8b558465a57659ea79cb.zip
qemu-02d0e095031b7fda77de8b558465a57659ea79cb.tar.gz
qemu-02d0e095031b7fda77de8b558465a57659ea79cb.tar.bz2
os-posix: include sys/mman.h
qemu/osdep.h checks whether MAP_ANONYMOUS is defined, but this check is bogus without a previous inclusion of sys/mman.h. Include it in sysemu/os-posix.h and remove it from everywhere else. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/vfio')
-rw-r--r--hw/vfio/common.c1
-rw-r--r--hw/vfio/pci.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/hw/vfio/common.c b/hw/vfio/common.c
index e51ed3a..5ff5e92 100644
--- a/hw/vfio/common.c
+++ b/hw/vfio/common.c
@@ -20,7 +20,6 @@
#include "qemu/osdep.h"
#include <sys/ioctl.h>
-#include <sys/mman.h>
#include <linux/vfio.h>
#include "hw/vfio/vfio-common.h"
diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
index deab0c6..53b87b7 100644
--- a/hw/vfio/pci.c
+++ b/hw/vfio/pci.c
@@ -21,7 +21,6 @@
#include "qemu/osdep.h"
#include <linux/vfio.h>
#include <sys/ioctl.h>
-#include <sys/mman.h>
#include "hw/pci/msi.h"
#include "hw/pci/msix.h"