diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2015-09-23 13:04:44 -0600 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2015-09-23 13:04:44 -0600 |
commit | 5e15d79b8681c7f4e2079833288785708e7520d3 (patch) | |
tree | 0f9e0c017a180b7828cf9cdf824ad15974f36195 /include | |
parent | 46746dbaa8c2c421b9bda78193caad57d7fb1136 (diff) | |
download | qemu-5e15d79b8681c7f4e2079833288785708e7520d3.zip |
vfio: Change polarity of our no-mmap option
The default should be to allow mmap and new drivers shouldn't need to
expose an option or set it to other than the allocation default in
their initfn. Take advantage of the experimental flag to change this
option to the correct polarity.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/vfio/vfio-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h index 100873e330..9b9901fbe2 100644 --- a/include/hw/vfio/vfio-common.h +++ b/include/hw/vfio/vfio-common.h @@ -97,7 +97,7 @@ typedef struct VFIODevice { int type; bool reset_works; bool needs_reset; - bool allow_mmap; + bool no_mmap; VFIODeviceOps *ops; unsigned int num_irqs; unsigned int num_regions; |