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

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