From: Wei Xu <wexu@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Jason Wang <jasowang@redhat.com>,
jfreimann@redhat.com, qemu-devel@nongnu.org, tiwei.bie@intel.com
Subject: Re: [Qemu-devel] [PATCH 4/8] virtio: add detach element for packed ring(1.1)
Date: Mon, 4 Jun 2018 17:40:09 +0800 [thread overview]
Message-ID: <20180604094009.GC13354@wei-ubt> (raw)
In-Reply-To: <20180604045330-mutt-send-email-mst@kernel.org>
On Mon, Jun 04, 2018 at 04:54:45AM +0300, Michael S. Tsirkin wrote:
> On Mon, Jun 04, 2018 at 09:34:35AM +0800, Wei Xu wrote:
> > On Tue, Apr 10, 2018 at 03:32:53PM +0800, Jason Wang wrote:
> > >
> > >
> > > On 2018年04月04日 20:54, wexu@redhat.com wrote:
> > > >From: Wei Xu <wexu@redhat.com>
> > > >
> > > >helper for packed ring
> > >
> > > It's odd and hard to review if you put detach patch first. I think this
> > > patch needs to be reordered after the implementation of pop/map.
> >
> > This patch is not necessary after sync to tiwei's v5, so we can skip it.
> >
> > Wei
>
> I suspect we will need to bring detach back eventually but yes,
> it can wait.
Sure, I reuse the code for 1.0 for now.
Wei
>
> > >
> > > Thanks
> > >
> > > >Signed-off-by: Wei Xu <wexu@redhat.com>
> > > >---
> > > > hw/virtio/virtio.c | 21 +++++++++++++++++++--
> > > > 1 file changed, 19 insertions(+), 2 deletions(-)
> > > >
> > > >diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
> > > >index 478df3d..fdee40f 100644
> > > >--- a/hw/virtio/virtio.c
> > > >+++ b/hw/virtio/virtio.c
> > > >@@ -561,6 +561,20 @@ static void virtqueue_unmap_sg(VirtQueue *vq, const VirtQueueElement *elem,
> > > > elem->out_sg[i].iov_len);
> > > > }
> > > >+static void virtqueue_detach_element_split(VirtQueue *vq,
> > > >+ const VirtQueueElement *elem, unsigned int len)
> > > >+{
> > > >+ vq->inuse--;
> > > >+ virtqueue_unmap_sg(vq, elem, len);
> > > >+}
> > > >+
> > > >+static void virtqueue_detach_element_packed(VirtQueue *vq,
> > > >+ const VirtQueueElement *elem, unsigned int len)
> > > >+{
> > > >+ vq->inuse -= elem->count;
> > > >+ virtqueue_unmap_sg(vq, elem, len);
> > > >+}
> > > >+
> > > > /* virtqueue_detach_element:
> > > > * @vq: The #VirtQueue
> > > > * @elem: The #VirtQueueElement
> > > >@@ -573,8 +587,11 @@ static void virtqueue_unmap_sg(VirtQueue *vq, const VirtQueueElement *elem,
> > > > void virtqueue_detach_element(VirtQueue *vq, const VirtQueueElement *elem,
> > > > unsigned int len)
> > > > {
> > > >- vq->inuse--;
> > > >- virtqueue_unmap_sg(vq, elem, len);
> > > >+ if (virtio_vdev_has_feature(vq->vdev, VIRTIO_F_RING_PACKED)) {
> > > >+ virtqueue_detach_element_packed(vq, elem, len);
> > > >+ } else {
> > > >+ virtqueue_detach_element_split(vq, elem, len);
> > > >+ }
> > > > }
> > > > /* virtqueue_unpop:
> > >
>
next prev parent reply other threads:[~2018-06-04 9:40 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-04 12:53 [Qemu-devel] [RFC PATCH 0/8] virtio-net 1.1 userspace backend support wexu
2018-04-04 12:53 ` [Qemu-devel] [PATCH 1/8] virtio: feature bit, data structure for packed ring wexu
2018-04-10 7:05 ` Jason Wang
2018-06-03 16:21 ` Wei Xu
2018-04-04 12:53 ` [Qemu-devel] [PATCH 2/8] virtio: memory cache " wexu
2018-04-10 7:06 ` Jason Wang
2018-04-04 12:53 ` [Qemu-devel] [PATCH 3/8] virtio: add empty check " wexu
2018-04-10 7:23 ` Jason Wang
2018-06-03 17:44 ` Wei Xu
2018-06-04 8:32 ` Jason Wang
2018-04-04 12:54 ` [Qemu-devel] [PATCH 4/8] virtio: add detach element for packed ring(1.1) wexu
2018-04-10 7:32 ` Jason Wang
2018-06-04 1:34 ` Wei Xu
2018-06-04 1:54 ` Michael S. Tsirkin
2018-06-04 9:40 ` Wei Xu [this message]
2018-04-04 12:54 ` [Qemu-devel] [PATCH 5/8] virtio: notification tweak for packed ring wexu
2018-04-04 12:54 ` [Qemu-devel] [PATCH 6/8] virtio: flush/push support " wexu
2018-04-11 2:58 ` Jason Wang
2018-04-04 12:54 ` [Qemu-devel] [PATCH 7/8] virtio: get avail bytes check " wexu
2018-04-11 3:03 ` Jason Wang
2018-06-04 6:07 ` Wei Xu
2018-04-04 12:54 ` [Qemu-devel] [PATCH 8/8] virtio: queue pop support " wexu
2018-04-11 2:43 ` Jason Wang
2018-06-04 7:07 ` Wei Xu
2018-04-04 13:11 ` [Qemu-devel] [RFC PATCH 0/8] virtio-net 1.1 userspace backend support no-reply
2018-04-04 13:14 ` no-reply
2018-04-04 13:14 ` no-reply
2018-04-10 3:46 ` Jason Wang
2018-04-11 2:22 ` Wei Xu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180604094009.GC13354@wei-ubt \
--to=wexu@redhat.com \
--cc=jasowang@redhat.com \
--cc=jfreimann@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=tiwei.bie@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).