summary refs log tree commit diff stats
path: root/hw/9pfs/virtio-9p-device.c
diff options
context:
space:
mode:
authorPan Nengyuan <pannengyuan@huawei.com>2020-01-17 14:09:27 +0800
committerMichael S. Tsirkin <mst@redhat.com>2020-01-22 00:23:07 -0500
commitad30a9e9043ac6ca386d5baca71e6c3d33bfcb9c (patch)
treeb86711fa2e821223708286dd8828a89fc5f1ed84 /hw/9pfs/virtio-9p-device.c
parent9580d60e66d1543a0d79265c0085ee09b8782987 (diff)
downloadfocaccia-qemu-ad30a9e9043ac6ca386d5baca71e6c3d33bfcb9c.tar.gz
focaccia-qemu-ad30a9e9043ac6ca386d5baca71e6c3d33bfcb9c.zip
virtio-9p-device: convert to new virtio_delete_queue
Use virtio_delete_queue to make it more clear.

Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com>
Message-Id: <20200117060927.51996-3-pannengyuan@huawei.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Diffstat (limited to 'hw/9pfs/virtio-9p-device.c')
-rw-r--r--hw/9pfs/virtio-9p-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c
index ba35892940..1d1c50409c 100644
--- a/hw/9pfs/virtio-9p-device.c
+++ b/hw/9pfs/virtio-9p-device.c
@@ -218,7 +218,7 @@ static void virtio_9p_device_unrealize(DeviceState *dev, Error **errp)
     V9fsVirtioState *v = VIRTIO_9P(dev);
     V9fsState *s = &v->state;
 
-    virtio_del_queue(vdev, 0);
+    virtio_delete_queue(v->vq);
     virtio_cleanup(vdev);
     v9fs_device_unrealize_common(s, errp);
 }