virtiofs: delete unused parameter for virtio_fs_cleanup_vqs

fs parameter not used. So, it needs to be deleted.

Signed-off-by: Deming Wang <wangdeming@inspur.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
This commit is contained in:
Deming Wang 2022-06-09 22:08:38 -04:00 committed by Miklos Szeredi
parent 9ccf47b26b
commit 1e5b9e048c

View file

@ -741,8 +741,7 @@ static int virtio_fs_setup_vqs(struct virtio_device *vdev,
} }
/* Free virtqueues (device must already be reset) */ /* Free virtqueues (device must already be reset) */
static void virtio_fs_cleanup_vqs(struct virtio_device *vdev, static void virtio_fs_cleanup_vqs(struct virtio_device *vdev)
struct virtio_fs *fs)
{ {
vdev->config->del_vqs(vdev); vdev->config->del_vqs(vdev);
} }
@ -895,7 +894,7 @@ static int virtio_fs_probe(struct virtio_device *vdev)
out_vqs: out_vqs:
virtio_reset_device(vdev); virtio_reset_device(vdev);
virtio_fs_cleanup_vqs(vdev, fs); virtio_fs_cleanup_vqs(vdev);
kfree(fs->vqs); kfree(fs->vqs);
out: out:
@ -927,7 +926,7 @@ static void virtio_fs_remove(struct virtio_device *vdev)
virtio_fs_stop_all_queues(fs); virtio_fs_stop_all_queues(fs);
virtio_fs_drain_all_queues_locked(fs); virtio_fs_drain_all_queues_locked(fs);
virtio_reset_device(vdev); virtio_reset_device(vdev);
virtio_fs_cleanup_vqs(vdev, fs); virtio_fs_cleanup_vqs(vdev);
vdev->priv = NULL; vdev->priv = NULL;
/* Put device reference on virtio_fs object */ /* Put device reference on virtio_fs object */