From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VBTck-0005FP-1a for qemu-devel@nongnu.org; Mon, 19 Aug 2013 13:52:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VBTcc-0004YA-GN for qemu-devel@nongnu.org; Mon, 19 Aug 2013 13:52:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36246) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VBTcc-0004Xx-8X for qemu-devel@nongnu.org; Mon, 19 Aug 2013 13:52:06 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7JHq5vm018721 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 19 Aug 2013 13:52:05 -0400 Message-ID: <52125B1B.2060103@redhat.com> Date: Mon, 19 Aug 2013 19:51:23 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1376927595-16685-1-git-send-email-armbru@redhat.com> In-Reply-To: <1376927595-16685-1-git-send-email-armbru@redhat.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/1] virtio-scsi: Make type virtio-scsi-common abstract List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: armbru@redhat.com Cc: qemu-devel@nongnu.org Il 19/08/2013 17:53, armbru@redhat.com ha scritto: > From: Markus Armbruster > > It's the abstract base of virtio-scsi-device and vhost-scsi. > > Signed-off-by: Markus Armbruster > --- > hw/scsi/virtio-scsi.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c > index 05da56b..a9ee17b 100644 > --- a/hw/scsi/virtio-scsi.c > +++ b/hw/scsi/virtio-scsi.c > @@ -692,6 +692,7 @@ static const TypeInfo virtio_scsi_common_info = { > .name = TYPE_VIRTIO_SCSI_COMMON, > .parent = TYPE_VIRTIO_DEVICE, > .instance_size = sizeof(VirtIOSCSICommon), > + .abstract = true, > .class_init = virtio_scsi_common_class_init, > }; > > Applied to scsi-next, thanks. Paolo