diff options
| author | Dr. David Alan Gilbert | 2014-10-03 23:33:37 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2014-11-02 12:44:12 +0100 |
| commit | 9b23cfb76b3a5e9eb5cc899eaf2f46bc46d33ba4 (patch) | |
| tree | 7f07d1dac045dbd42cbba0ba8bcb4049c6207ccb /include | |
| parent | acpi/cpu-hotplug: introduce helper function to keep bit setting in one place (diff) | |
| download | qemu-9b23cfb76b3a5e9eb5cc899eaf2f46bc46d33ba4.tar.gz qemu-9b23cfb76b3a5e9eb5cc899eaf2f46bc46d33ba4.tar.xz qemu-9b23cfb76b3a5e9eb5cc899eaf2f46bc46d33ba4.zip | |
-machine vmport=off: Allow disabling of VMWare ioport emulation
This is a pc & q35 only machine opt.
VMWare apparently doesn't like running under QEMU due to our
incomplete emulation of it's special IO Port. This adds a
pc & q35 property to allow it to be turned off.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Don Slutz <dslutz@verizon.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Richard W.M. Jones <rjones@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/i386/pc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index d1011978e0..7c3731f1b0 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -37,11 +37,13 @@ struct PCMachineState { ISADevice *rtc; uint64_t max_ram_below_4g; + bool vmport; }; #define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device" #define PC_MACHINE_MEMHP_REGION_SIZE "hotplug-memory-region-size" #define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g" +#define PC_MACHINE_VMPORT "vmport" /** * PCMachineClass: |
