From: Jason Wang <jasowang@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>,
Keiichi Watanabe <keiichiw@chromium.org>
Cc: chirantan@chromium.org, netdev@vger.kernel.org,
"David S . Miller" <davem@davemloft.net>,
linux-kernel@vger.kernel.org,
virtualization@lists.linux-foundation.org
Subject: Re: [PATCH] virtio_net: Enable MSI-X vector for ctrl queue
Date: Mon, 21 Jun 2021 14:21:18 +0800 [thread overview]
Message-ID: <0933f13d-b52e-321e-4be1-1b0e3cfb346b@redhat.com> (raw)
In-Reply-To: <20210618083650-mutt-send-email-mst@kernel.org>
在 2021/6/18 下午8:38, Michael S. Tsirkin 写道:
> On Fri, Jun 18, 2021 at 04:26:25PM +0900, Keiichi Watanabe wrote:
>> When we use vhost-user backend on the host, MSI-X vector should be set
>> so that the vmm can get an irq FD and send it to the backend device
>> process with vhost-user protocol.
>> Since whether the vector is set for a queue is determined depending on
>> the queue has a callback, this commit sets an empty callback for
>> virtio-net's control queue.
>>
>> Signed-off-by: Keiichi Watanabe <keiichiw@chromium.org>
> I'm confused by this explanation. If the vmm wants to get
> an interrupt it can do so - why change the guest driver?
+1, it sounds like a bug in the backend or we probably need more context
here.
Thanks
>
>> ---
>> drivers/net/virtio_net.c | 7 ++++++-
>> 1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
>> index 11f722460513..002e3695d4b3 100644
>> --- a/drivers/net/virtio_net.c
>> +++ b/drivers/net/virtio_net.c
>> @@ -2696,6 +2696,11 @@ static void virtnet_del_vqs(struct virtnet_info *vi)
>> virtnet_free_queues(vi);
>> }
>>
>> +static void virtnet_ctrlq_done(struct virtqueue *rvq)
>> +{
>> + /* Do nothing */
>> +}
>> +
>> /* How large should a single buffer be so a queue full of these can fit at
>> * least one full packet?
>> * Logic below assumes the mergeable buffer header is used.
>> @@ -2748,7 +2753,7 @@ static int virtnet_find_vqs(struct virtnet_info *vi)
>>
>> /* Parameters for control virtqueue, if any */
>> if (vi->has_cvq) {
>> - callbacks[total_vqs - 1] = NULL;
>> + callbacks[total_vqs - 1] = virtnet_ctrlq_done;
>> names[total_vqs - 1] = "control";
>> }
>>
>> --
>> 2.32.0.288.g62a8d224e6-goog
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
prev parent reply other threads:[~2021-06-21 6:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20210618072625.957837-1-keiichiw@chromium.org>
2021-06-18 12:38 ` [PATCH] virtio_net: Enable MSI-X vector for ctrl queue Michael S. Tsirkin
2021-06-21 6:21 ` Jason Wang [this message]
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=0933f13d-b52e-321e-4be1-1b0e3cfb346b@redhat.com \
--to=jasowang@redhat.com \
--cc=chirantan@chromium.org \
--cc=davem@davemloft.net \
--cc=keiichiw@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=virtualization@lists.linux-foundation.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).