From 83da09b513ecdc9225188de859f4d35184094522 Mon Sep 17 00:00:00 2001 From: Julia Suvorova Date: Tue, 4 Feb 2020 18:20:06 +0000 Subject: [PATCH 5/6] virtio: reset region cache when on queue deletion RH-Author: Julia Suvorova Message-id: <20200204182007.183537-4-jusual@redhat.com> Patchwork-id: 93704 O-Subject: [RHEL-8.2.0 qemu-kvm PATCH 3/4] virtio: reset region cache when on queue deletion Bugzilla: 1708480 RH-Acked-by: Stefan Hajnoczi RH-Acked-by: Cornelia Huck RH-Acked-by: Michael S. Tsirkin From: Yuri Benditovich https://bugzilla.redhat.com/show_bug.cgi?id=1708480 Fix leak of region reference that prevents complete device deletion on hot unplug. Cc: qemu-stable@nongnu.org Signed-off-by: Yuri Benditovich Message-Id: <20191226043649.14481-2-yuri.benditovich@daynix.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin (cherry picked from commit 421afd2fe8dd4603216cbf36081877c391f5a2a4) Signed-off-by: Danilo C. L. de Paula --- hw/virtio/virtio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 624f6e2..c105873 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -1607,6 +1607,7 @@ void virtio_delete_queue(VirtQueue *vq) vq->vring.num_default = 0; vq->handle_output = NULL; vq->handle_aio_output = NULL; + virtio_virtqueue_reset_region_cache(vq); } void virtio_del_queue(VirtIODevice *vdev, int n) -- 1.8.3.1