From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42497) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrukP-0004ff-65 for qemu-devel@nongnu.org; Mon, 11 May 2015 16:56:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YrukO-0005JO-3e for qemu-devel@nongnu.org; Mon, 11 May 2015 16:56:21 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34299) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YrukN-0005JI-SS for qemu-devel@nongnu.org; Mon, 11 May 2015 16:56:20 -0400 From: Eduardo Habkost Date: Mon, 11 May 2015 17:55:49 -0300 Message-Id: <1431377756-19579-7-git-send-email-ehabkost@redhat.com> In-Reply-To: <1431377756-19579-1-git-send-email-ehabkost@redhat.com> References: <1431377756-19579-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 06/13] pc: Define PC_COMPAT_2_[123] macros List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexander Graf , "Michael S. Tsirkin" Once we start adding compat code for pc-2.3, the usage of HW_COMPAT_2_1 in pc-*-2.2 won't be enough, as it also has to include PC_COMPAT_2_3 inside it. To ensure that, define PC_COMPAT_2_3, PC_COMPAT_2_2, and PC_COMPAT_2_1 macros. Signed-off-by: Eduardo Habkost --- hw/i386/pc_piix.c | 10 +++++++++- hw/i386/pc_q35.c | 10 +++++++++- include/hw/i386/pc.h | 13 ++++++++++++- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index cba341b..1d5b776 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -523,6 +523,10 @@ static QEMUMachine pc_i440fx_machine_v2_3 = { .alias = "pc", .init = pc_init_pci, .is_default = 1, + .compat_props = (GlobalProperty[]) { + PC_COMPAT_2_3 + { /* end of list */ } + }, }; #define PC_I440FX_2_2_MACHINE_OPTIONS PC_I440FX_2_3_MACHINE_OPTIONS @@ -531,6 +535,10 @@ static QEMUMachine pc_i440fx_machine_v2_2 = { PC_I440FX_2_2_MACHINE_OPTIONS, .name = "pc-i440fx-2.2", .init = pc_init_pci_2_2, + .compat_props = (GlobalProperty[]) { + PC_COMPAT_2_2 + { /* end of list */ } + }, }; #define PC_I440FX_2_1_MACHINE_OPTIONS \ @@ -542,7 +550,7 @@ static QEMUMachine pc_i440fx_machine_v2_1 = { .name = "pc-i440fx-2.1", .init = pc_init_pci_2_1, .compat_props = (GlobalProperty[]) { - HW_COMPAT_2_1 + PC_COMPAT_2_1 { /* end of list */ } }, }; diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index b308575..7b62fa6 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -420,6 +420,10 @@ static QEMUMachine pc_q35_machine_v2_3 = { .name = "pc-q35-2.3", .alias = "q35", .init = pc_q35_init, + .compat_props = (GlobalProperty[]) { + PC_COMPAT_2_3 + { /* end of list */ } + }, }; #define PC_Q35_2_2_MACHINE_OPTIONS PC_Q35_2_3_MACHINE_OPTIONS @@ -428,6 +432,10 @@ static QEMUMachine pc_q35_machine_v2_2 = { PC_Q35_2_2_MACHINE_OPTIONS, .name = "pc-q35-2.2", .init = pc_q35_init_2_2, + .compat_props = (GlobalProperty[]) { + PC_COMPAT_2_2 + { /* end of list */ } + }, }; #define PC_Q35_2_1_MACHINE_OPTIONS \ @@ -439,7 +447,7 @@ static QEMUMachine pc_q35_machine_v2_1 = { .name = "pc-q35-2.1", .init = pc_q35_init_2_1, .compat_props = (GlobalProperty[]) { - HW_COMPAT_2_1 + PC_COMPAT_2_1 { /* end of list */ } }, }; diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index ab862e3..672f1f7 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -295,8 +295,19 @@ int e820_add_entry(uint64_t, uint64_t, uint32_t); int e820_get_num_entries(void); bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *); +#define PC_COMPAT_2_3 \ + HW_COMPAT_2_3 + +#define PC_COMPAT_2_2 \ + PC_COMPAT_2_3 \ + HW_COMPAT_2_2 + +#define PC_COMPAT_2_1 \ + PC_COMPAT_2_2 \ + HW_COMPAT_2_1 + #define PC_COMPAT_2_0 \ - HW_COMPAT_2_1 \ + PC_COMPAT_2_1 \ {\ .driver = "virtio-scsi-pci",\ .property = "any_layout",\ -- 2.1.0