45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
|
From 2e07c4c66a1199ef33fb2e89164e03ca2acdcf10 Mon Sep 17 00:00:00 2001
|
||
|
From: Laurent Vivier <lvivier@redhat.com>
|
||
|
Date: Thu, 29 Jul 2021 07:42:12 -0400
|
||
|
Subject: [PATCH 10/39] migration: failover: reset partially_hotplugged
|
||
|
|
||
|
RH-Author: Miroslav Rezanina <mrezanin@redhat.com>
|
||
|
RH-MergeRequest: 32: Synchronize with RHEL-AV 8.5 release 27 to RHEL 9
|
||
|
RH-Commit: [2/15] b01f5640ce93192b2239ad4ef15ff53d977f2341 (mrezanin/centos-src-qemu-kvm)
|
||
|
RH-Bugzilla: 1957194
|
||
|
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
|
||
|
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
||
|
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
||
|
RH-Acked-by: Andrew Jones <drjones@redhat.com>
|
||
|
|
||
|
When the card is plugged back, reset the partially_hotplugged flag to false
|
||
|
|
||
|
Bug: https://bugzilla.redhat.com/show_bug.cgi?id=1787194
|
||
|
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
|
||
|
Message-Id: <20210629152937.619193-1-lvivier@redhat.com>
|
||
|
Reviewed-by: Juan Quintela <quintela@redhat.com>
|
||
|
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
||
|
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
||
|
(cherry picked from commit 109c20ea28cc0d82fa353e692345b172cb5721cc)
|
||
|
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
|
||
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
||
|
---
|
||
|
hw/net/virtio-net.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
|
||
|
index 914051feb7..c2e32fedbf 100644
|
||
|
--- a/hw/net/virtio-net.c
|
||
|
+++ b/hw/net/virtio-net.c
|
||
|
@@ -3134,6 +3134,7 @@ static bool failover_replug_primary(VirtIONet *n, DeviceState *dev,
|
||
|
}
|
||
|
hotplug_handler_plug(hotplug_ctrl, dev, &err);
|
||
|
}
|
||
|
+ pdev->partially_hotplugged = false;
|
||
|
|
||
|
out:
|
||
|
error_propagate(errp, err);
|
||
|
--
|
||
|
2.27.0
|
||
|
|