All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] virtio-net: correctly enable callback during start_xmit
@ 2022-12-12  9:10 ` Jason Wang
  0 siblings, 0 replies; 14+ messages in thread
From: Jason Wang @ 2022-12-12  9:10 UTC (permalink / raw)
  To: mst, jasowang, davem, edumazet, kuba, pabeni
  Cc: netdev, linux-kernel, virtualization

Commit a7766ef18b33("virtio_net: disable cb aggressively") enables
virtqueue callback via the following statement:

        do {
           ......
	} while (use_napi && kick &&
               unlikely(!virtqueue_enable_cb_delayed(sq->vq)));

This will cause a missing call to virtqueue_enable_cb_delayed() when
kick is false. Fixing this by removing the checking of the kick from
the condition to make sure callback is enabled correctly.

Fixes: a7766ef18b33 ("virtio_net: disable cb aggressively")
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
The patch is needed for -stable.
---
 drivers/net/virtio_net.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 86e52454b5b5..44d7daf0267b 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -1834,8 +1834,8 @@ static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
 
 		free_old_xmit_skbs(sq, false);
 
-	} while (use_napi && kick &&
-	       unlikely(!virtqueue_enable_cb_delayed(sq->vq)));
+	} while (use_napi &&
+		 unlikely(!virtqueue_enable_cb_delayed(sq->vq)));
 
 	/* timestamp packet in software */
 	skb_tx_timestamp(skb);
-- 
2.25.1

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

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

end of thread, other threads:[~2022-12-13 15:17 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-12  9:10 [PATCH net] virtio-net: correctly enable callback during start_xmit Jason Wang
2022-12-12  9:10 ` Jason Wang
2022-12-12  9:25 ` Michael S. Tsirkin
2022-12-12  9:25   ` Michael S. Tsirkin
2022-12-13  3:33   ` Xuan Zhuo
2022-12-13  3:33     ` Xuan Zhuo
2022-12-13  3:43     ` Jason Wang
2022-12-13  3:43       ` Jason Wang
2022-12-13  6:38       ` Michael S. Tsirkin
2022-12-13  6:38         ` Michael S. Tsirkin
2022-12-13  6:57         ` Jason Wang
2022-12-13  6:57           ` Jason Wang
2022-12-13 15:15           ` Michael S. Tsirkin
2022-12-13 15:15             ` Michael S. Tsirkin

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.