From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ws616-0000O7-Q5 for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:53:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ws610-0001HY-Hu for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:53:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39646) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ws610-0001Gp-8a for qemu-devel@nongnu.org; Wed, 04 Jun 2014 03:53:42 -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 s547rfra019649 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 4 Jun 2014 03:53:41 -0400 Date: Wed, 4 Jun 2014 15:53:54 +0800 From: Fam Zheng Message-ID: <20140604075354.GC3223@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). Using pointer avoids copying, what's the advantage of converting to "sturct virtio_blk_outhdr" for non-dataplane code? For thread-safety? Fam > > 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). > > Thanks, > > Paolo > > >- bool read; /* read or write? */ > > #endif > > } VirtIOBlockReq; > > > > >