[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL v2 05/27] virtio-input: convert to new virtio_delete_queue
From: |
Michael S. Tsirkin |
Subject: |
[PULL v2 05/27] virtio-input: convert to new virtio_delete_queue |
Date: |
Mon, 23 Dec 2019 11:41:20 -0500 |
Seems cleaner than using VQ index values.
Signed-off-by: Michael S. Tsirkin <address@hidden>
---
hw/input/virtio-input.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/hw/input/virtio-input.c b/hw/input/virtio-input.c
index ec54e46ad6..9c013afddb 100644
--- a/hw/input/virtio-input.c
+++ b/hw/input/virtio-input.c
@@ -280,6 +280,7 @@ static void virtio_input_device_unrealize(DeviceState *dev,
Error **errp)
{
VirtIOInputClass *vic = VIRTIO_INPUT_GET_CLASS(dev);
VirtIODevice *vdev = VIRTIO_DEVICE(dev);
+ VirtIOInput *vinput = VIRTIO_INPUT(dev);
Error *local_err = NULL;
if (vic->unrealize) {
@@ -289,8 +290,8 @@ static void virtio_input_device_unrealize(DeviceState *dev,
Error **errp)
return;
}
}
- virtio_del_queue(vdev, 0);
- virtio_del_queue(vdev, 1);
+ virtio_delete_queue(vinput->evt);
+ virtio_delete_queue(vinput->sts);
virtio_cleanup(vdev);
}
--
MST
- [PULL v2 00/27] virtio, pci, pc: fixes, features, Michael S. Tsirkin, 2019/12/23
- [PULL v2 01/27] virtio: add ability to delete vq through a pointer, Michael S. Tsirkin, 2019/12/23
- [PULL v2 02/27] virtio: make virtio_delete_queue idempotent, Michael S. Tsirkin, 2019/12/23
- [PULL v2 03/27] virtio-balloon: fix memory leak while attach virtio-balloon device, Michael S. Tsirkin, 2019/12/23
- [PULL v2 04/27] virtio-serial-bus: fix memory leak while attach virtio-serial-bus, Michael S. Tsirkin, 2019/12/23
- [PULL v2 05/27] virtio-input: convert to new virtio_delete_queue,
Michael S. Tsirkin <=
- [PULL v2 06/27] intel_iommu: fix bug to read DMAR_RTADDR_REG, Michael S. Tsirkin, 2019/12/23
- [PULL v2 07/27] virtio: update queue size on guest write, Michael S. Tsirkin, 2019/12/23
- [PULL v2 09/27] Implement backend program convention command for vhost-user-blk, Michael S. Tsirkin, 2019/12/23
- [PULL v2 08/27] virtio-pci: disable vring processing when bus-mastering is disabled, Michael S. Tsirkin, 2019/12/23
- [PULL v2 10/27] virtio: don't enable notifications during polling, Michael S. Tsirkin, 2019/12/23
- [PULL v2 11/27] numa: Extend CLI to provide initiator information for numa nodes, Michael S. Tsirkin, 2019/12/23
- [PULL v2 12/27] numa: Extend CLI to provide memory latency and bandwidth information, Michael S. Tsirkin, 2019/12/23
- [PULL v2 13/27] numa: Extend CLI to provide memory side cache information, Michael S. Tsirkin, 2019/12/23
- [PULL v2 14/27] hmat acpi: Build Memory Proximity Domain Attributes Structure(s), Michael S. Tsirkin, 2019/12/23
- [PULL v2 15/27] hmat acpi: Build System Locality Latency and Bandwidth Information Structure(s), Michael S. Tsirkin, 2019/12/23