From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47037) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ws5Kk-0000Dp-D2 for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:10:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ws5Ke-00067h-88 for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:10:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63351) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ws5Kd-00067c-WB for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:09:56 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5479tse024817 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 4 Jun 2014 03:09:55 -0400 Date: Wed, 4 Jun 2014 15:10:08 +0800 From: Fam Zheng Message-ID: <20140604071008.GB3223@T430.nay.redhat.com> References: <1401799978-9558-1-git-send-email-famz@redhat.com> <1401799978-9558-6-git-send-email-famz@redhat.com> <538DCF99.9030602@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <538DCF99.9030602@redhat.com> Subject: Re: [Qemu-devel] [PATCH 5/5] virtio-blk: Drop VirtIOBlockReq.read List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: Kevin Wolf , qemu-devel@nongnu.org, Stefan Hajnoczi On Tue, 06/03 15:37, Paolo Bonzini wrote: > I guess this is more of an RFC, but still a useful starting point for > discussion. > > Il 03/06/2014 14:52, Fam Zheng ha scritto: > >diff --git a/include/hw/virtio/virtio-blk.h b/include/hw/virtio/virtio-blk.h > >index e406efa..74f0f32 100644 > >--- a/include/hw/virtio/virtio-blk.h > >+++ b/include/hw/virtio/virtio-blk.h > >@@ -146,7 +146,6 @@ typedef struct VirtIOBlockReq { > > #ifdef CONFIG_VIRTIO_BLK_DATA_PLANE > > struct VirtIOBlockDataPlane *s; > > This is just dev->dataplane, so it's trivial to remove. > > > QEMUIOVector *inhdr; /* iovecs for virtio_blk_inhdr */ > > This can be unified with the "in" field; the status is only one byte, so > using a full-blown QEMUIOVector is overkill. Stefan, what do you think? > > For the sake of restarting requests, we also need dataplane to populate the > "out" field for dataplane. We can also take the occasion to change it from > "struct virtio_blk_outhdr *" to "struct virtio_blk_outhdr" for non-dataplane > and use iov_discard_front on the elem (see dataplane's process_request > function). > > Can you do it in v2 of this patch series? With this in place we can look at > the missing pieces: > > - rerror/werror > > - accounting (trivial) > > - multiwrite (if desired). > Yes, good idea. I will do it! Thanks, Fam