[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 15/57] piix: Move pc-0.1[23] rombar compat props to P
From: |
Michael S. Tsirkin |
Subject: |
[Qemu-devel] [PULL 15/57] piix: Move pc-0.1[23] rombar compat props to PC_COMPAT_0_13 |
Date: |
Sun, 31 May 2015 20:35:14 +0200 |
From: Eduardo Habkost <address@hidden>
The VGA and vmware-svga rombar compat properties were added by commit
281a26b15b4adcecb8604216738975abd754bea8, but only to pc-0.13 and
pc-0.12. This breaks the PC_COMPAT_* nesting pattern we currently
follow.
The new variables will now be inherited by pc-0.11 and older, but
pc-0.11 and pc-0.10 already have PCI.rombar=0 on compat_props, so they
shouldn't be affected at all.
Cc: Stefan Weil <address@hidden>
Cc: Gerd Hoffmann <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>
Reviewed-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Michael S. Tsirkin <address@hidden>
---
hw/i386/pc_piix.c | 26 ++++++++------------------
1 file changed, 8 insertions(+), 18 deletions(-)
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
index 9d12c93..ac98af1 100644
--- a/hw/i386/pc_piix.c
+++ b/hw/i386/pc_piix.c
@@ -842,6 +842,14 @@ static QEMUMachine pc_machine_v0_14 = {
.driver = "virtio-9p-pci",\
.property = "vectors",\
.value = stringify(0),\
+ },{\
+ .driver = "VGA",\
+ .property = "rombar",\
+ .value = stringify(0),\
+ },{\
+ .driver = "vmware-svga",\
+ .property = "rombar",\
+ .value = stringify(0),\
},
#define PC_I440FX_0_13_MACHINE_OPTIONS \
@@ -853,15 +861,6 @@ static QEMUMachine pc_machine_v0_13 = {
.name = "pc-0.13",
.compat_props = (GlobalProperty[]) {
PC_COMPAT_0_13
- {
- .driver = "VGA",
- .property = "rombar",
- .value = stringify(0),
- },{
- .driver = "vmware-svga",
- .property = "rombar",
- .value = stringify(0),
- },
{ /* end of list */ }
},
.hw_version = "0.13",
@@ -896,15 +895,6 @@ static QEMUMachine pc_machine_v0_12 = {
.name = "pc-0.12",
.compat_props = (GlobalProperty[]) {
PC_COMPAT_0_12
- {
- .driver = "VGA",
- .property = "rombar",
- .value = stringify(0),
- },{
- .driver = "vmware-svga",
- .property = "rombar",
- .value = stringify(0),
- },
{ /* end of list */ }
},
.hw_version = "0.12",
--
MST
- [Qemu-devel] [PULL 05/57] hw: Move commas inside HW_COMPAT_2_1 macro, (continued)
- [Qemu-devel] [PULL 05/57] hw: Move commas inside HW_COMPAT_2_1 macro, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 06/57] pc: Move commas inside PC_COMPAT_* macros, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 07/57] spapr: Move commas inside SPAPR_COMPAT_* macros, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 08/57] hw: Define empty HW_COMPAT_2_[23] macros, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 09/57] pc: Define PC_COMPAT_2_[123] macros, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 10/57] spapr: Use HW_COMPAT_* inside SPAPR_COMPAT_* macros, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 11/57] spapr: define SPAPR_COMPAT_2_3, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 12/57] piix: Move pc-0.14 qxl compat properties to PC_COMPAT_0_14, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 13/57] piix: Move pc-0.11 drive version compat props to PC_COMPAT_0_11, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 14/57] piix: Move pc-0.13 virtio-9p-pci compat to PC_COMPAT_0_13, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 15/57] piix: Move pc-0.1[23] rombar compat props to PC_COMPAT_0_13,
Michael S. Tsirkin <=
- [Qemu-devel] [PULL 16/57] piix: Define PC_COMPAT_0_10, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 17/57] pc: Define MACHINE_OPTIONS macros consistently for all machines, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 18/57] pc: Define machines using a DEFINE_PC_MACHINE macro, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 19/57] pc: Convert *_MACHINE_OPTIONS macros into functions, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 20/57] pc: Move compat_props setting inside *_machine_options() functions, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 21/57] pc: Don't use QEMUMachine anymore, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 22/57] pc: Remove qemu_register_pc_machine() function, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 23/57] machine: Remove unused fields from QEMUMachine, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 24/57] piix: Add kvmclock_enabled, pci_enabled globals, Michael S. Tsirkin, 2015/05/31
- [Qemu-devel] [PULL 25/57] piix: Eliminate pc_init_pci(), Michael S. Tsirkin, 2015/05/31