From: Jason Wang <jasowang@redhat.com>
To: Eugenio Perez Martin <eperezma@redhat.com>
Cc: qemu-level <qemu-devel@nongnu.org>,
Liuxiangdong <liuxiangdong5@huawei.com>,
Markus Armbruster <armbru@redhat.com>,
Harpreet Singh Anand <hanand@xilinx.com>,
Eric Blake <eblake@redhat.com>,
Laurent Vivier <lvivier@redhat.com>,
Parav Pandit <parav@mellanox.com>,
Cornelia Huck <cohuck@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Gautam Dawar <gdawar@xilinx.com>, Eli Cohen <eli@mellanox.com>,
"Gonglei (Arei)" <arei.gonglei@huawei.com>,
Zhu Lingshan <lingshan.zhu@intel.com>,
"Michael S. Tsirkin" <mst@redhat.com>, Cindy Lu <lulu@redhat.com>
Subject: Re: [RFC PATCH v9 08/23] vhost: Decouple vhost_svq_add_split from VirtQueueElement
Date: Tue, 12 Jul 2022 15:43:50 +0800 [thread overview]
Message-ID: <40865b2f-353f-8910-a73c-94260ec6fe07@redhat.com> (raw)
In-Reply-To: <CAJaqyWftrXQ3bg9LFjC14SYOGP1g_3t-_iekHmBDSvd5XVRKAA@mail.gmail.com>
在 2022/7/11 16:27, Eugenio Perez Martin 写道:
> On Mon, Jul 11, 2022 at 10:00 AM Jason Wang <jasowang@redhat.com> wrote:
>>
>> 在 2022/7/7 02:39, Eugenio Pérez 写道:
>>> VirtQueueElement comes from the guest, but we're heading SVQ to be able
>>> to inject element without the guest's knowledge.
>>>
>>> To do so, make this accept sg buffers directly, instead of using
>>> VirtQueueElement.
>>>
>>> Add vhost_svq_add_element to maintain element convenience
>>>
>>> Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
>>> ---
>>> hw/virtio/vhost-shadow-virtqueue.c | 38 +++++++++++++++++++++---------
>>> 1 file changed, 27 insertions(+), 11 deletions(-)
>>>
>>> diff --git a/hw/virtio/vhost-shadow-virtqueue.c b/hw/virtio/vhost-shadow-virtqueue.c
>>> index 2fc5789b73..46d3c1d74f 100644
>>> --- a/hw/virtio/vhost-shadow-virtqueue.c
>>> +++ b/hw/virtio/vhost-shadow-virtqueue.c
>>> @@ -172,30 +172,32 @@ static bool vhost_svq_vring_write_descs(VhostShadowVirtqueue *svq, hwaddr *sg,
>>> }
>>>
>>> static bool vhost_svq_add_split(VhostShadowVirtqueue *svq,
>>> - VirtQueueElement *elem, unsigned *head)
>>> + const struct iovec *out_sg, size_t out_num,
>>> + const struct iovec *in_sg, size_t in_num,
>>> + unsigned *head)
>>> {
>>> unsigned avail_idx;
>>> vring_avail_t *avail = svq->vring.avail;
>>> bool ok;
>>> - g_autofree hwaddr *sgs = g_new(hwaddr, MAX(elem->out_num, elem->in_num));
>>> + g_autofree hwaddr *sgs = NULL;
>>
>> Is this change a must for this patch? (looks not related to the
>> decoupling anyhow)
>>
> Right, the delay on the variable assignment is an artifact I missed in
> the cleaning. I can revert for the next version if any.
>
> With that reverted, can I add the acked-by tag from you?
Yes.
Thanks
>
> Thanks!
>
>> Other looks good.
>>
>> Thanks
>>
>>
>>> *head = svq->free_head;
>>>
>>> /* We need some descriptors here */
>>> - if (unlikely(!elem->out_num && !elem->in_num)) {
>>> + if (unlikely(!out_num && !in_num)) {
>>> qemu_log_mask(LOG_GUEST_ERROR,
>>> "Guest provided element with no descriptors");
>>> return false;
>>> }
>>>
>>> - ok = vhost_svq_vring_write_descs(svq, sgs, elem->out_sg, elem->out_num,
>>> - elem->in_num > 0, false);
>>> + sgs = g_new(hwaddr, MAX(out_num, in_num));
>>> + ok = vhost_svq_vring_write_descs(svq, sgs, out_sg, out_num, in_num > 0,
>>> + false);
>>> if (unlikely(!ok)) {
>>> return false;
>>> }
>>>
>>> - ok = vhost_svq_vring_write_descs(svq, sgs, elem->in_sg, elem->in_num, false,
>>> - true);
>>> + ok = vhost_svq_vring_write_descs(svq, sgs, in_sg, in_num, false, true);
>>> if (unlikely(!ok)) {
>>> /* TODO unwind out_sg */
>>> return false;
>>> @@ -223,10 +225,13 @@ static bool vhost_svq_add_split(VhostShadowVirtqueue *svq,
>>> * takes ownership of the element: In case of failure, it is free and the SVQ
>>> * is considered broken.
>>> */
>>> -static bool vhost_svq_add(VhostShadowVirtqueue *svq, VirtQueueElement *elem)
>>> +static bool vhost_svq_add(VhostShadowVirtqueue *svq, const struct iovec *out_sg,
>>> + size_t out_num, const struct iovec *in_sg,
>>> + size_t in_num, VirtQueueElement *elem)
>>> {
>>> unsigned qemu_head;
>>> - bool ok = vhost_svq_add_split(svq, elem, &qemu_head);
>>> + bool ok = vhost_svq_add_split(svq, out_sg, out_num, in_sg, in_num,
>>> + &qemu_head);
>>> if (unlikely(!ok)) {
>>> g_free(elem);
>>> return false;
>>> @@ -250,6 +255,18 @@ static void vhost_svq_kick(VhostShadowVirtqueue *svq)
>>> event_notifier_set(&svq->hdev_kick);
>>> }
>>>
>>> +static bool vhost_svq_add_element(VhostShadowVirtqueue *svq,
>>> + VirtQueueElement *elem)
>>> +{
>>> + bool ok = vhost_svq_add(svq, elem->out_sg, elem->out_num, elem->in_sg,
>>> + elem->in_num, elem);
>>> + if (ok) {
>>> + vhost_svq_kick(svq);
>>> + }
>>> +
>>> + return ok;
>>> +}
>>> +
>>> /**
>>> * Forward available buffers.
>>> *
>>> @@ -302,12 +319,11 @@ static void vhost_handle_guest_kick(VhostShadowVirtqueue *svq)
>>> return;
>>> }
>>>
>>> - ok = vhost_svq_add(svq, elem);
>>> + ok = vhost_svq_add_element(svq, g_steal_pointer(&elem));
>>> if (unlikely(!ok)) {
>>> /* VQ is broken, just return and ignore any other kicks */
>>> return;
>>> }
>>> - vhost_svq_kick(svq);
>>> }
>>>
>>> virtio_queue_set_notification(svq->vq, true);
next prev parent reply other threads:[~2022-07-12 8:14 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-06 18:39 [RFC PATCH v9 00/23] Net Control VQ support in SVQ Eugenio Pérez
2022-07-06 18:39 ` [RFC PATCH v9 01/23] vhost: Return earlier if used buffers overrun Eugenio Pérez
2022-07-08 8:52 ` Jason Wang
2022-07-06 18:39 ` [RFC PATCH v9 02/23] vhost: move descriptor translation to vhost_svq_vring_write_descs Eugenio Pérez
2022-07-06 18:39 ` [RFC PATCH v9 03/23] vdpa: delay set_vring_ready after DRIVER_OK Eugenio Pérez
2022-07-08 9:06 ` Jason Wang
2022-07-08 9:56 ` Eugenio Perez Martin
2022-07-08 9:59 ` Eugenio Perez Martin
2022-07-13 5:51 ` Michael S. Tsirkin
2022-07-13 6:18 ` Eugenio Perez Martin
2022-07-06 18:39 ` [RFC PATCH v9 04/23] vhost: Get vring base from vq, not svq Eugenio Pérez
2022-07-08 9:12 ` Jason Wang
2022-07-08 10:10 ` Eugenio Perez Martin
2022-07-12 7:42 ` Jason Wang
2022-07-12 9:42 ` Eugenio Perez Martin
2022-07-06 18:39 ` [RFC PATCH v9 05/23] vhost: Add ShadowVirtQueueStart operation Eugenio Pérez
2022-07-06 18:39 ` [RFC PATCH v9 06/23] virtio-net: Expose ctrl virtqueue logic Eugenio Pérez
2022-07-06 18:39 ` [RFC PATCH v9 07/23] vhost: add vhost_svq_push_elem Eugenio Pérez
2022-07-06 18:39 ` [RFC PATCH v9 08/23] vhost: Decouple vhost_svq_add_split from VirtQueueElement Eugenio Pérez
2022-07-11 8:00 ` Jason Wang
2022-07-11 8:27 ` Eugenio Perez Martin
2022-07-12 7:43 ` Jason Wang [this message]
2022-07-06 18:39 ` [RFC PATCH v9 09/23] vhost: Add SVQElement Eugenio Pérez
2022-07-11 9:00 ` Jason Wang
2022-07-11 9:33 ` Eugenio Perez Martin
2022-07-12 7:49 ` Jason Wang
2022-07-06 18:39 ` [RFC PATCH v9 10/23] vhost: Reorder vhost_svq_last_desc_of_chain Eugenio Pérez
2022-07-06 18:39 ` [RFC PATCH v9 11/23] vhost: Move last chain id to SVQ element Eugenio Pérez
2022-07-11 9:02 ` Jason Wang
2022-07-06 18:39 ` [RFC PATCH v9 12/23] vhost: Add opaque member to SVQElement Eugenio Pérez
2022-07-11 9:05 ` Jason Wang
2022-07-11 9:56 ` Eugenio Perez Martin
2022-07-12 7:53 ` Jason Wang
2022-07-12 8:32 ` Eugenio Perez Martin
2022-07-12 8:43 ` Jason Wang
2022-07-06 18:39 ` [RFC PATCH v9 13/23] vhost: Add vhost_svq_inject Eugenio Pérez
2022-07-11 9:14 ` Jason Wang
2022-07-11 9:43 ` Eugenio Perez Martin
2022-07-12 7:58 ` Jason Wang
2022-07-06 18:39 ` [RFC PATCH v9 14/23] vhost: add vhost_svq_poll Eugenio Pérez
2022-07-11 9:19 ` Jason Wang
2022-07-11 17:52 ` Eugenio Perez Martin
2022-07-06 18:40 ` [RFC PATCH v9 15/23] vhost: Add custom used buffer callback Eugenio Pérez
2022-07-06 18:40 ` [RFC PATCH v9 16/23] vhost: Add svq avail_handler callback Eugenio Pérez
2022-07-06 18:40 ` [RFC PATCH v9 17/23] vhost: add detach SVQ operation Eugenio Pérez
2022-07-06 18:40 ` [RFC PATCH v9 18/23] vdpa: Export vhost_vdpa_dma_map and unmap calls Eugenio Pérez
2022-07-11 9:22 ` Jason Wang
2022-07-06 18:40 ` [RFC PATCH v9 19/23] vdpa: Extract get features part from vhost_vdpa_get_max_queue_pairs Eugenio Pérez
2022-07-12 4:11 ` Jason Wang
2022-07-06 18:40 ` [RFC PATCH v9 20/23] vdpa: Buffer CVQ support on shadow virtqueue Eugenio Pérez
2022-07-12 7:17 ` Jason Wang
2022-07-12 9:47 ` Eugenio Perez Martin
2022-07-14 6:54 ` Eugenio Perez Martin
2022-07-14 7:04 ` Jason Wang
2022-07-14 17:37 ` Eugenio Perez Martin
2022-07-06 18:40 ` [RFC PATCH v9 21/23] vdpa: Add vhost_vdpa_start_control_svq Eugenio Pérez
2022-07-12 7:26 ` Jason Wang
2022-07-17 10:30 ` Eugenio Perez Martin
2022-07-17 11:00 ` Eugenio Perez Martin
2022-07-06 18:40 ` [RFC PATCH v9 22/23] vdpa: Inject virtio-net mac address via CVQ at start Eugenio Pérez
2022-07-06 18:40 ` [RFC PATCH v9 23/23] vdpa: Add x-svq to NetdevVhostVDPAOptions Eugenio Pérez
2022-07-07 6:23 ` Markus Armbruster
2022-07-08 10:53 ` Eugenio Perez Martin
2022-07-08 12:51 ` Markus Armbruster
2022-07-11 7:14 ` Eugenio Perez Martin
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=40865b2f-353f-8910-a73c-94260ec6fe07@redhat.com \
--to=jasowang@redhat.com \
--cc=arei.gonglei@huawei.com \
--cc=armbru@redhat.com \
--cc=cohuck@redhat.com \
--cc=eblake@redhat.com \
--cc=eli@mellanox.com \
--cc=eperezma@redhat.com \
--cc=gdawar@xilinx.com \
--cc=hanand@xilinx.com \
--cc=lingshan.zhu@intel.com \
--cc=liuxiangdong5@huawei.com \
--cc=lulu@redhat.com \
--cc=lvivier@redhat.com \
--cc=mst@redhat.com \
--cc=parav@mellanox.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).