virtio_ring: remove the arg vq of vring_alloc_desc_extra()
authorXuan Zhuo <xuanzhuo@linux.alibaba.com>
Fri, 24 Jun 2022 02:55:45 +0000 (10:55 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 11 Aug 2022 08:06:37 +0000 (04:06 -0400)
The parameter vq of vring_alloc_desc_extra() is useless. This patch
removes this parameter.

Subsequent patches will call this function to avoid passing useless
arguments.

Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Message-Id: <20220624025621.128843-6-xuanzhuo@linux.alibaba.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/virtio/virtio_ring.c

index 643ca779fcc6354ece2c1d473bf5dbbd81ae97db..a5ec724c01d8cd327d2ffae204cbf2440a49708b 100644 (file)
@@ -1637,8 +1637,7 @@ static void *virtqueue_detach_unused_buf_packed(struct virtqueue *_vq)
        return NULL;
 }
 
-static struct vring_desc_extra *vring_alloc_desc_extra(struct vring_virtqueue *vq,
-                                                      unsigned int num)
+static struct vring_desc_extra *vring_alloc_desc_extra(unsigned int num)
 {
        struct vring_desc_extra *desc_extra;
        unsigned int i;
@@ -1759,7 +1758,7 @@ static struct virtqueue *vring_create_virtqueue_packed(
        /* Put everything in free lists. */
        vq->free_head = 0;
 
-       vq->packed.desc_extra = vring_alloc_desc_extra(vq, num);
+       vq->packed.desc_extra = vring_alloc_desc_extra(num);
        if (!vq->packed.desc_extra)
                goto err_desc_extra;
 
@@ -2248,7 +2247,7 @@ struct virtqueue *__vring_new_virtqueue(unsigned int index,
        if (!vq->split.desc_state)
                goto err_state;
 
-       vq->split.desc_extra = vring_alloc_desc_extra(vq, vring.num);
+       vq->split.desc_extra = vring_alloc_desc_extra(vring.num);
        if (!vq->split.desc_extra)
                goto err_extra;