|
|
902636 |
From 2f494c41715193522c52eafc6af2a5e33f88ceb9 Mon Sep 17 00:00:00 2001
|
|
|
016a62 |
From: Julia Suvorova <jusual@redhat.com>
|
|
|
902636 |
Date: Wed, 19 Feb 2020 21:34:31 +0000
|
|
|
902636 |
Subject: [PATCH 7/7] virtio-net: delete also control queue when TX/RX deleted
|
|
|
016a62 |
|
|
|
016a62 |
RH-Author: Julia Suvorova <jusual@redhat.com>
|
|
|
902636 |
Message-id: <20200219213431.11913-5-jusual@redhat.com>
|
|
|
902636 |
Patchwork-id: 93983
|
|
|
902636 |
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH 4/4] virtio-net: delete also control queue when TX/RX deleted
|
|
|
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 |
If the control queue is not deleted together with TX/RX, it
|
|
|
016a62 |
later will be ignored in freeing cache resources and hot
|
|
|
016a62 |
unplug will not be completed.
|
|
|
016a62 |
|
|
|
016a62 |
Cc: qemu-stable@nongnu.org
|
|
|
016a62 |
Signed-off-by: Yuri Benditovich <yuri.benditovich@daynix.com>
|
|
|
016a62 |
Message-Id: <20191226043649.14481-3-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 d945d9f1731244ef341f74ede93120fc9de35913)
|
|
|
016a62 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
016a62 |
---
|
|
|
902636 |
hw/net/virtio-net.c | 3 ++-
|
|
|
902636 |
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
016a62 |
|
|
|
016a62 |
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
|
|
|
902636 |
index db3d7c3..f325440 100644
|
|
|
016a62 |
--- a/hw/net/virtio-net.c
|
|
|
016a62 |
+++ b/hw/net/virtio-net.c
|
|
|
902636 |
@@ -3101,7 +3101,8 @@ static void virtio_net_device_unrealize(DeviceState *dev, Error **errp)
|
|
|
902636 |
for (i = 0; i < max_queues; i++) {
|
|
|
016a62 |
virtio_net_del_queue(n, i);
|
|
|
016a62 |
}
|
|
|
902636 |
-
|
|
|
016a62 |
+ /* delete also control vq */
|
|
|
016a62 |
+ virtio_del_queue(vdev, max_queues * 2);
|
|
|
902636 |
qemu_announce_timer_del(&n->announce_timer, false);
|
|
|
016a62 |
g_free(n->vqs);
|
|
|
016a62 |
qemu_del_nic(n->nic);
|
|
|
016a62 |
--
|
|
|
016a62 |
1.8.3.1
|
|
|
016a62 |
|