[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC 06/10] vdpa-dev: implement the unrealize interface
From: |
Longpeng(Mike) |
Subject: |
[RFC 06/10] vdpa-dev: implement the unrealize interface |
Date: |
Wed, 5 Jan 2022 08:58:56 +0800 |
From: Longpeng <longpeng2@huawei.com>
Implements the .unrealize interface.
Signed-off-by: Longpeng <longpeng2@huawei.com>
---
hw/virtio/vdpa-dev.c | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/hw/virtio/vdpa-dev.c b/hw/virtio/vdpa-dev.c
index 2d534d837a..4e4dd3d201 100644
--- a/hw/virtio/vdpa-dev.c
+++ b/hw/virtio/vdpa-dev.c
@@ -133,9 +133,29 @@ out:
close(fd);
}
+static void vhost_vdpa_vdev_unrealize(VhostVdpaDevice *s)
+{
+ VirtIODevice *vdev = VIRTIO_DEVICE(s);
+ int i;
+
+ for (i = 0; i < s->num_queues; i++) {
+ virtio_delete_queue(s->virtqs[i]);
+ }
+ g_free(s->virtqs);
+ virtio_cleanup(vdev);
+
+ g_free(s->config);
+}
+
static void vhost_vdpa_device_unrealize(DeviceState *dev)
{
- return;
+ VirtIODevice *vdev = VIRTIO_DEVICE(dev);
+ VhostVdpaDevice *s = VHOST_VDPA_DEVICE(vdev);
+
+ virtio_set_status(vdev, 0);
+ vhost_dev_cleanup(&s->dev);
+ vhost_vdpa_vdev_unrealize(s);
+ close(s->vdpa.device_fd);
}
static void
--
2.23.0
- Re: [RFC 01/10] virtio: get class_id and pci device id by the virtio id, (continued)
[RFC 07/10] vdpa-dev: implement the get_config/set_config interface, Longpeng(Mike), 2022/01/04
[RFC 06/10] vdpa-dev: implement the unrealize interface,
Longpeng(Mike) <=
[RFC 04/10] vdpa-dev: implement the instance_init/class_init interface, Longpeng(Mike), 2022/01/04
[RFC 05/10] vdpa-dev: implement the realize interface, Longpeng(Mike), 2022/01/04