From: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
To: virtualization@lists.linux.dev
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>,
Xuan Zhuo <xuanzhuo@linux.alibaba.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
netdev@vger.kernel.org
Subject: [PATCH vhost v2 5/7] virtio_net: enable premapped by default
Date: Mon, 22 Apr 2024 15:24:06 +0800 [thread overview]
Message-ID: <20240422072408.126821-6-xuanzhuo@linux.alibaba.com> (raw)
In-Reply-To: <20240422072408.126821-1-xuanzhuo@linux.alibaba.com>
Currently, big, merge, and small modes all support the premapped mode.
We can now enable premapped mode by default. Furthermore,
virtqueue_set_dma_premapped() must succeed when called immediately after
find_vqs(). Consequently, we can assume that premapped mode is always
enabled.
Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
---
drivers/net/virtio_net.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index d4f5e65b247e..f04b10426b8f 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -896,13 +896,9 @@ static void virtnet_rq_set_premapped(struct virtnet_info *vi)
{
int i;
- /* disable for big mode */
- if (!vi->mergeable_rx_bufs && vi->big_packets)
- return;
-
for (i = 0; i < vi->max_queue_pairs; i++) {
- if (virtqueue_set_dma_premapped(vi->rq[i].vq))
- continue;
+ /* error never happen */
+ BUG_ON(virtqueue_set_dma_premapped(vi->rq[i].vq));
vi->rq[i].do_dma = true;
}
--
2.32.0.3.g01195cf9f
next prev parent reply other threads:[~2024-04-22 7:24 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-22 7:24 [PATCH vhost v2 0/7] virtio_net: rx enable premapped mode by default Xuan Zhuo
2024-04-22 7:24 ` [PATCH vhost v2 1/7] virtio_ring: introduce dma map api for page Xuan Zhuo
2024-04-22 7:24 ` [PATCH vhost v2 2/7] virtio_ring: enable premapped mode whatever use_dma_api Xuan Zhuo
2024-04-22 7:24 ` [PATCH vhost v2 3/7] virtio_net: replace private by pp struct inside page Xuan Zhuo
2024-04-22 7:24 ` [PATCH vhost v2 4/7] virtio_net: big mode support premapped Xuan Zhuo
2024-04-23 4:36 ` Jason Wang
2024-04-23 5:47 ` Xuan Zhuo
2024-04-23 12:31 ` Xuan Zhuo
2024-04-24 0:43 ` Jason Wang
2024-04-24 0:53 ` Xuan Zhuo
2024-04-24 2:34 ` Jason Wang
2024-04-24 2:39 ` Xuan Zhuo
2024-04-24 2:45 ` Jason Wang
2024-04-24 2:54 ` Xuan Zhuo
2024-04-24 3:50 ` Jason Wang
2024-04-24 5:43 ` Xuan Zhuo
2024-04-22 7:24 ` Xuan Zhuo [this message]
2024-04-22 7:24 ` [PATCH vhost v2 6/7] virtio_net: rx remove premapped failover code Xuan Zhuo
2024-04-22 7:24 ` [PATCH vhost v2 7/7] virtio_net: remove the misleading comment Xuan Zhuo
2024-04-23 3:11 ` Jason Wang
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=20240422072408.126821-6-xuanzhuo@linux.alibaba.com \
--to=xuanzhuo@linux.alibaba.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jasowang@redhat.com \
--cc=kuba@kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=virtualization@lists.linux.dev \
/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).