All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net v2] virtio-net: don't disable guest csum when disable LRO
@ 2020-09-29  1:58 ` xiangxia.m.yue
  0 siblings, 0 replies; 22+ messages in thread
From: xiangxia.m.yue @ 2020-09-29  1:58 UTC (permalink / raw)
  To: jasowang, mst, willemb; +Cc: virtualization, netdev, Tonghao Zhang

From: Tonghao Zhang <xiangxia.m.yue@gmail.com>

Open vSwitch and Linux bridge will disable LRO of the interface
when this interface added to them. Now when disable the LRO, the
virtio-net csum is disable too. That drops the forwarding performance.

Fixes: a02e8964eaf9 ("virtio-net: ethtool configurable LRO")
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Willem de Bruijn <willemb@google.com>
Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
---
v2:
* change the fix-tag
---
 drivers/net/virtio_net.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 7145c83c6c8c..21b71148c532 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -63,6 +63,11 @@ static const unsigned long guest_offloads[] = {
 	VIRTIO_NET_F_GUEST_CSUM
 };
 
+#define GUEST_OFFLOAD_LRO_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \
+				(1ULL << VIRTIO_NET_F_GUEST_TSO6) | \
+				(1ULL << VIRTIO_NET_F_GUEST_ECN)  | \
+				(1ULL << VIRTIO_NET_F_GUEST_UFO))
+
 struct virtnet_stat_desc {
 	char desc[ETH_GSTRING_LEN];
 	size_t offset;
@@ -2531,7 +2536,8 @@ static int virtnet_set_features(struct net_device *dev,
 		if (features & NETIF_F_LRO)
 			offloads = vi->guest_offloads_capable;
 		else
-			offloads = 0;
+			offloads = vi->guest_offloads_capable &
+				   ~GUEST_OFFLOAD_LRO_MASK;
 
 		err = virtnet_set_guest_offloads(vi, offloads);
 		if (err)
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2020-09-29 19:54 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29  1:58 [PATCH net v2] virtio-net: don't disable guest csum when disable LRO xiangxia.m.yue
2020-09-29  1:58 ` xiangxia.m.yue
2020-09-29  6:23 ` Michael S. Tsirkin
2020-09-29  6:23   ` Michael S. Tsirkin
2020-09-29  6:59   ` Tonghao Zhang
2020-09-29  6:59     ` Tonghao Zhang
2020-09-29  7:21     ` Michael S. Tsirkin
2020-09-29  7:21       ` Michael S. Tsirkin
2020-09-29  7:29       ` Willem de Bruijn
2020-09-29  7:29         ` Willem de Bruijn
2020-09-29  8:04         ` Tonghao Zhang
2020-09-29  8:04           ` Tonghao Zhang
2020-09-29  7:31 ` Willem de Bruijn
2020-09-29  7:31   ` Willem de Bruijn
2020-09-29  7:52   ` Tonghao Zhang
2020-09-29  7:52     ` Tonghao Zhang
2020-09-29  8:38     ` Willem de Bruijn
2020-09-29  8:38       ` Willem de Bruijn
2020-09-29  8:39 ` Willem de Bruijn
2020-09-29  8:39   ` Willem de Bruijn
2020-09-29 19:54 ` David Miller
2020-09-29 19:54   ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.