virtio: wrap find_vqs
We are going to add more parameters to find_vqs, let's wrap the call so we don't need to tweak all drivers every time. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
@@ -1945,9 +1945,9 @@ static int init_vqs(struct ports_device *portdev)
|
||||
}
|
||||
}
|
||||
/* Find the queues. */
|
||||
err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
|
||||
io_callbacks,
|
||||
(const char **)io_names, NULL);
|
||||
err = virtio_find_vqs(portdev->vdev, nr_queues, vqs,
|
||||
io_callbacks,
|
||||
(const char **)io_names, NULL);
|
||||
if (err)
|
||||
goto free;
|
||||
|
||||
|
Reference in New Issue
Block a user