Blame SOURCES/kvm-virtio-reset-region-cache-when-on-queue-deletion.patch

902636
From 8bf4f561262d9282cebdb3418cdb9a69c92216a0 Mon Sep 17 00:00:00 2001
016a62
From: Julia Suvorova <jusual@redhat.com>
902636
Date: Wed, 19 Feb 2020 21:34:30 +0000
902636
Subject: [PATCH 6/7] virtio: reset region cache when on queue deletion
016a62
016a62
RH-Author: Julia Suvorova <jusual@redhat.com>
902636
Message-id: <20200219213431.11913-4-jusual@redhat.com>
902636
Patchwork-id: 93982
902636
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH 3/4] virtio: reset region cache when on queue deletion
902636
Bugzilla: 1791590
902636
RH-Acked-by: Danilo de Paula <ddepaula@redhat.com>
902636
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
016a62
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
016a62
016a62
From: Yuri Benditovich <yuri.benditovich@daynix.com>
016a62
016a62
https://bugzilla.redhat.com/show_bug.cgi?id=1708480
016a62
Fix leak of region reference that prevents complete
016a62
device deletion on hot unplug.
016a62
016a62
Cc: qemu-stable@nongnu.org
016a62
Signed-off-by: Yuri Benditovich <yuri.benditovich@daynix.com>
016a62
Message-Id: <20191226043649.14481-2-yuri.benditovich@daynix.com>
016a62
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
016a62
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
016a62
(cherry picked from commit 421afd2fe8dd4603216cbf36081877c391f5a2a4)
016a62
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
016a62
---
016a62
 hw/virtio/virtio.c | 1 +
016a62
 1 file changed, 1 insertion(+)
016a62
016a62
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
902636
index e6a9ba4..f644d9a 100644
016a62
--- a/hw/virtio/virtio.c
016a62
+++ b/hw/virtio/virtio.c
902636
@@ -2343,6 +2343,7 @@ void virtio_delete_queue(VirtQueue *vq)
016a62
     vq->handle_aio_output = NULL;
902636
     g_free(vq->used_elems);
902636
     vq->used_elems = NULL;
016a62
+    virtio_virtqueue_reset_region_cache(vq);
016a62
 }
016a62
 
016a62
 void virtio_del_queue(VirtIODevice *vdev, int n)
016a62
-- 
016a62
1.8.3.1
016a62