From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53557) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDhg-0002Ke-0k for qemu-devel@nongnu.org; Thu, 07 Jan 2016 11:46:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aHDhb-0007Up-B3 for qemu-devel@nongnu.org; Thu, 07 Jan 2016 11:46:23 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46638) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDhb-0007Ud-5o for qemu-devel@nongnu.org; Thu, 07 Jan 2016 11:46:19 -0500 References: <1450423803-12839-1-git-send-email-shmulik.ladkani@ravellosystems.com> <1450423803-12839-2-git-send-email-shmulik.ladkani@ravellosystems.com> <20151223212139.2c8f7beb@halley> <568E929C.3080504@redhat.com> <20160107173311.547748b7.cornelia.huck@de.ibm.com> From: Paolo Bonzini Message-ID: <568E9653.8070506@redhat.com> Date: Thu, 7 Jan 2016 17:46:11 +0100 MIME-Version: 1.0 In-Reply-To: <20160107173311.547748b7.cornelia.huck@de.ibm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/2] compat: Introduce HW_COMPAT_2_5 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cornelia Huck Cc: Jason Wang , idan.brown@ravellosystems.com, qemu-devel@nongnu.org, Dmitry Fleytman , Shmulik Ladkani , David Gibson On 07/01/2016 17:33, Cornelia Huck wrote: > On Thu, 7 Jan 2016 17:30:20 +0100 > Paolo Bonzini wrote: > >> On 23/12/2015 20:21, Shmulik Ladkani wrote: >>> Hi, >>> >>> On Fri, 18 Dec 2015 09:30:02 +0200 Shmulik Ladkani wrote: >>>> Introduce the place-holder for 2.5 back-compat properties, and the >>>> accompanying PC_COMPAT_2_5, CCW_COMPAT_2_5, SPAPR_COMPAT_2_5. >>> >>> Please ignore this series, it'll clash. >>> >>> Recent pull has already introduced HW_COMPAT_2_5 and PC_COMPAT_2_5 >>> (240240d pc: Add pc-*-2.6 machine classes). >>> >>> I'll send patches introducing only CCW_COMPAT_2_5 and SPAPR_COMPAT_2_5 >> >> Can you send these now? > > I've already added the CCW_COMPAT_2_5 patch to my queue. > Ok, so I can send Shmulik's patch doing @@ -2,14 +2,7 @@ #define HW_COMPAT_H #define HW_COMPAT_2_5 \ - /* empty */ - -#define HW_COMPAT_2_4 \ {\ - .driver = "virtio-blk-device",\ - .property = "scsi",\ - .value = "true",\ - },{\ .driver = "pvscsi",\ .property = "x-old-pci-configuration",\ .value = "on",\ @@ -17,6 +10,13 @@ .driver = "pvscsi",\ .property = "x-disable-pcie",\ .value = "on",\ + }, + +#define HW_COMPAT_2_4 \ + {\ + .driver = "virtio-blk-device",\ + .property = "scsi",\ + .value = "true",\ },{\ .driver = "e1000",\ .property = "extra_mac_registers",\ in my next pull request. Paolo