From: "Michael S. Tsirkin" <mst@redhat.com>
To: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Cc: virtualization@lists.linux-foundation.org
Subject: Re: [PATCH v8 16/16] virtio_ring: introduce virtqueue_resize()
Date: Fri, 25 Mar 2022 06:33:19 -0400 [thread overview]
Message-ID: <20220325062719-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20220314093455.34707-17-xuanzhuo@linux.alibaba.com>
On Mon, Mar 14, 2022 at 05:34:55PM +0800, Xuan Zhuo wrote:
> Introduce virtqueue_resize() to implement the resize of vring.
> Based on these, the driver can dynamically adjust the size of the vring.
> For example: ethtool -G.
>
> virtqueue_resize() implements resize based on the vq reset function. In
> case of failure to allocate a new vring, it will give up resize and use
> the original vring.
>
> During this process, if the re-enable reset vq fails, the vq can no
> longer be used. Although the probability of this situation is not high.
>
> The parameter recycle is used to recycle the buffer that is no longer
> used.
>
> Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
> ---
> drivers/virtio/virtio_ring.c | 67 ++++++++++++++++++++++++++++++++++++
> include/linux/virtio.h | 3 ++
> 2 files changed, 70 insertions(+)
>
> diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
> index fb0abf9a2f57..b1dde086a8a4 100644
> --- a/drivers/virtio/virtio_ring.c
> +++ b/drivers/virtio/virtio_ring.c
> @@ -2528,6 +2528,73 @@ struct virtqueue *vring_create_virtqueue(
> }
> EXPORT_SYMBOL_GPL(vring_create_virtqueue);
>
> +/**
> + * virtqueue_resize - resize the vring of vq
> + * @vq: the struct virtqueue we're talking about.
> + * @num: new ring num
> + * @recycle: callback for recycle the useless buffer
> + *
> + * When it is really necessary to create a new vring, it will set the current vq
> + * into the reset state. Then call the passed cb to recycle the buffer that is
> + * no longer used. Only after the new vring is successfully created, the old
> + * vring will be released.
> + *
> + * Caller must ensure we don't call this with other virtqueue operations
> + * at the same time (except where noted).
> + *
> + * Returns zero or a negative error.
> + * -ENOMEM: create new vring fail. But vq can still work
> + * -EBUSY: reset/re-enable vq fail. vq may cannot work
> + * -ENOENT: not support resize
> + * -E2BIG/-EINVAL: param num error
> + */
> +int virtqueue_resize(struct virtqueue *vq, u32 num,
> + void (*recycle)(struct virtqueue *vq, void *buf))
> +{
> + struct virtio_device *vdev = vq->vdev;
> + void *buf;
> + int err;
> +
> + if (num > vq->num_max)
> + return -E2BIG;
> +
> + if (!num)
> + return -EINVAL;
> +
> + if (to_vvq(vq)->packed.vring.num == num)
> + return 0;
> +
> + if (!vq->vdev->config->reset_vq)
> + return -ENOENT;
> +
> + if (!vq->vdev->config->enable_reset_vq)
> + return -ENOENT;
> +
> + err = vq->vdev->config->reset_vq(vq);
> + if (err) {
> + if (err != -ENOENT)
> + err = -EBUSY;
> + return err;
> + }
> +
> + while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
> + recycle(vq, buf);
So all this callback can do now is drop all buffers, and I think that is
not great. Can we store them and invoke the callback after queue is
enabled?
> +
> + if (virtio_has_feature(vdev, VIRTIO_F_RING_PACKED))
> + err = virtqueue_resize_packed(vq, num);
> + else
> + err = virtqueue_resize_split(vq, num);
> +
> + if (err)
> + err = -ENOMEM;
> +
> + if (vq->vdev->config->enable_reset_vq(vq))
> + return -EBUSY;
> +
> + return err;
> +}
> +EXPORT_SYMBOL_GPL(virtqueue_resize);
> +
> /* Only available for split ring */
> struct virtqueue *vring_new_virtqueue(unsigned int index,
> unsigned int num,
> diff --git a/include/linux/virtio.h b/include/linux/virtio.h
> index d59adc4be068..c86ff02e0ca0 100644
> --- a/include/linux/virtio.h
> +++ b/include/linux/virtio.h
> @@ -91,6 +91,9 @@ dma_addr_t virtqueue_get_desc_addr(struct virtqueue *vq);
> dma_addr_t virtqueue_get_avail_addr(struct virtqueue *vq);
> dma_addr_t virtqueue_get_used_addr(struct virtqueue *vq);
>
> +int virtqueue_resize(struct virtqueue *vq, u32 num,
> + void (*recycle)(struct virtqueue *vq, void *buf));
> +
> /**
> * virtio_device - representation of a device using virtio
> * @index: unique position on the virtio bus
> --
> 2.31.0
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
next prev parent reply other threads:[~2022-03-25 10:33 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-14 9:34 [PATCH v8 00/16] virtio pci support VIRTIO_F_RING_RESET (refactor vring) Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 01/16] virtio: add helper virtqueue_get_vring_max_size() Xuan Zhuo
2022-03-14 9:50 ` Cornelia Huck
2022-03-14 11:18 ` Michael S. Tsirkin
2022-03-14 11:21 ` Xuan Zhuo
2022-03-22 6:24 ` Michael S. Tsirkin
2022-03-14 9:34 ` [PATCH v8 02/16] virtio: struct virtio_config_ops add callbacks for queue_reset Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 03/16] virtio_ring: update the document of the virtqueue_detach_unused_buf for queue reset Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 04/16] virtio_ring: remove the arg vq of vring_alloc_desc_extra() Xuan Zhuo
2022-03-22 5:49 ` Jason Wang
2022-03-14 9:34 ` [PATCH v8 05/16] virtio_ring: extract the logic of freeing vring Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 06/16] virtio_ring: split: extract the logic of alloc queue Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 07/16] virtio_ring: split: extract the logic of alloc state and extra Xuan Zhuo
2022-03-22 6:33 ` Jason Wang
2022-03-24 8:28 ` Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 08/16] virtio_ring: split: extract the logic of attach vring Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 09/16] virtio_ring: split: extract the logic of vq init Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 10/16] virtio_ring: split: implement virtqueue_resize_split() Xuan Zhuo
2022-03-22 6:30 ` Jason Wang
2022-03-24 8:44 ` Xuan Zhuo
2022-03-30 3:48 ` Jason Wang
2022-03-30 6:13 ` Xuan Zhuo
2022-03-30 6:57 ` Jason Wang
2022-03-14 9:34 ` [PATCH v8 11/16] virtio_ring: packed: extract the logic of alloc queue Xuan Zhuo
2022-03-22 6:38 ` Jason Wang
2022-03-24 8:28 ` Xuan Zhuo
2022-03-30 3:50 ` Jason Wang
2022-03-30 6:07 ` Xuan Zhuo
2022-03-30 6:58 ` Jason Wang
2022-03-14 9:34 ` [PATCH v8 12/16] virtio_ring: packed: extract the logic of alloc state and extra Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 13/16] virtio_ring: packed: extract the logic of attach vring Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 14/16] virtio_ring: packed: extract the logic of vq init Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 15/16] virtio_ring: packed: implement virtqueue_resize_packed() Xuan Zhuo
2022-03-14 9:34 ` [PATCH v8 16/16] virtio_ring: introduce virtqueue_resize() Xuan Zhuo
2022-03-22 6:02 ` Jason Wang
2022-03-24 8:34 ` Xuan Zhuo
2022-03-24 10:41 ` Michael S. Tsirkin
2022-03-25 7:37 ` Jason Wang
2022-03-25 10:33 ` Michael S. Tsirkin [this message]
2022-03-25 22:31 ` Xuan Zhuo
2022-03-22 6:40 ` [PATCH v8 00/16] virtio pci support VIRTIO_F_RING_RESET (refactor vring) Jason Wang
2022-03-24 8:52 ` Xuan Zhuo
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=20220325062719-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=virtualization@lists.linux-foundation.org \
--cc=xuanzhuo@linux.alibaba.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).