]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
virtio_net: replace vq2rxq with vq2txq where appropriate
authorKoichiro Den <koichiro.den@canonical.com>
Fri, 6 Dec 2024 01:10:43 +0000 (10:10 +0900)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 10 Dec 2024 10:22:21 +0000 (11:22 +0100)
While not harmful, using vq2rxq where it's always sq appears odd.
Replace it with the more appropriate vq2txq for clarity and correctness.

Fixes: 89f86675cb03 ("virtio_net: xsk: tx: support xmit xsk buffer")
Signed-off-by: Koichiro Den <koichiro.den@canonical.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/virtio_net.c

index 6e0925f7f182172f37eaec76d39eaf1a7167d36f..fc89c5e1a207f37c6bf6f1538a9474db9d74a34b 100644 (file)
@@ -6213,7 +6213,7 @@ static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf)
 {
        struct virtnet_info *vi = vq->vdev->priv;
        struct send_queue *sq;
-       int i = vq2rxq(vq);
+       int i = vq2txq(vq);
 
        sq = &vi->sq[i];