From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46754) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zn0aL-000822-VV for qemu-devel@nongnu.org; Fri, 16 Oct 2015 04:41:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zn0aL-0004Gx-0o for qemu-devel@nongnu.org; Fri, 16 Oct 2015 04:41:57 -0400 References: <1444984830-39886-1-git-send-email-cornelia.huck@de.ibm.com> From: Paolo Bonzini Message-ID: <5620B849.80202@redhat.com> Date: Fri, 16 Oct 2015 10:41:45 +0200 MIME-Version: 1.0 In-Reply-To: <1444984830-39886-1-git-send-email-cornelia.huck@de.ibm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] virtio-blk: switch off scsi-passthrough by default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cornelia Huck , qemu-devel@nongnu.org Cc: kwolf@redhat.com, jasowang@redhat.com, stefanha@redhat.com, qemu-block@nongnu.org, mst@redhat.com On 16/10/2015 10:40, Cornelia Huck wrote: > --- a/hw/s390x/s390-virtio-ccw.c > +++ b/hw/s390x/s390-virtio-ccw.c > @@ -272,6 +272,10 @@ static const TypeInfo ccw_machine_info = { > .driver = "vhost-scsi-ccw",\ > .property = "max_revision",\ > .value = "0",\ > + },{\ > + .driver = "virtio-blk-ccw",\ > + .property = "scsi",\ > + .value = "true",\ > }, > > static void ccw_machine_2_4_class_init(ObjectClass *oc, void *data) > diff --git a/include/hw/compat.h b/include/hw/compat.h > index 095de5d..bbf1ab2 100644 > --- a/include/hw/compat.h > +++ b/include/hw/compat.h > @@ -2,7 +2,11 @@ > #define HW_COMPAT_H > > #define HW_COMPAT_2_4 \ > - /* empty */ > + {\ > + .driver = "virtio-blk-pci",\ > + .property = "scsi",\ > + .value = "true",\ > + }, > > #define HW_COMPAT_2_3 \ > {\ > s390 should use HW_COMPAT_2_4 as well. Otherwise looks good. Paolo