From: Cornelia Huck <cornelia.huck@de.ibm.com>
To: Pierre Morel <pmorel@linux.vnet.ibm.com>
Cc: mst@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com,
gkurz@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH] virtio: right size for virtio_queue_get_avail_size
Date: Wed, 2 Sep 2015 17:50:55 +0200 [thread overview]
Message-ID: <20150902175055.78b06a5b.cornelia.huck@de.ibm.com> (raw)
In-Reply-To: <1441207429-23221-1-git-send-email-pmorel@linux.vnet.ibm.com>
On Wed, 2 Sep 2015 17:23:49 +0200
Pierre Morel <pmorel@linux.vnet.ibm.com> wrote:
> Being working on dataplane I notice something strange:
>
> virtio_queue_get_avail_size() used a 64bit size index
> for the calculation of the available ring size.
>
> It is quite strange but it did work with the old calculation
> of the avail ring, at most with performance penalty,
> and I wonder where I missed something.
>
> This patch let use a 16bit size as defined in virtio_ring.h
>
> Signed-off-by: Pierre Morel <pmorel@linux.vnet.ibm.com>
> ---
> hw/virtio/virtio.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
> index 788b556..5c856eb 100644
> --- a/hw/virtio/virtio.c
> +++ b/hw/virtio/virtio.c
> @@ -1460,7 +1460,7 @@ hwaddr virtio_queue_get_desc_size(VirtIODevice *vdev, int n)
> hwaddr virtio_queue_get_avail_size(VirtIODevice *vdev, int n)
> {
> return offsetof(VRingAvail, ring) +
> - sizeof(uint64_t) * vdev->vq[n].vring.num;
> + sizeof(uint16_t) * vdev->vq[n].vring.num;
> }
>
> hwaddr virtio_queue_get_used_size(VirtIODevice *vdev, int n)
I'm wondering about the semantics of the _size() functions. Naively I
would expect (size of buffer) * (number of buffers). I think at least
vhost expects the {used,avail} indices in there as well? The
s390-virtio code seems not to expect the indices to be contained in the
size, though...
next prev parent reply other threads:[~2015-09-03 2:28 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-02 15:23 [Qemu-devel] [PATCH] virtio: right size for virtio_queue_get_avail_size Pierre Morel
2015-09-02 15:50 ` Cornelia Huck [this message]
2015-09-02 17:57 ` Greg Kurz
2015-09-03 8:23 ` Greg Kurz
2015-09-03 9:10 ` Cornelia Huck
-- strict thread matches above, loose matches on Subject: below --
2015-09-10 11:37 Pierre Morel
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=20150902175055.78b06a5b.cornelia.huck@de.ibm.com \
--to=cornelia.huck@de.ibm.com \
--cc=gkurz@linux.vnet.ibm.com \
--cc=mst@redhat.com \
--cc=pmorel@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.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).