qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] failover: unregister ram on unplug
@ 2021-07-20 18:16 Laurent Vivier
  2021-07-21  8:58 ` Igor Mammedov
  0 siblings, 1 reply; 6+ messages in thread
From: Laurent Vivier @ 2021-07-20 18:16 UTC (permalink / raw)
  To: qemu-devel
  Cc: Jason Wang, Jens Freimann, Michael S. Tsirkin,
	Dr . David Alan Gilbert, Juan Quintela

This simple change allows to test failover with a simulated device
like e1000e rather than a vfio device.

This is interesting to developers that want to test failover on
a system with no vfio device. Moreover it simplifies host networking
configuration as we can use the same bridge for virtio-net and
the other failover networking device.

Without this change the migration of a system configured with failover
fails with:

  Unknown ramblock "0000:00:01.1:00.0/e1000e.rom", cannot accept migration
  error while loading state for instance 0x0 of device 'ram'
  load of migration failed: Invalid argument

Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
 hw/net/virtio-net.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index 16d20cdee52a..8f7735bad4f2 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -3256,6 +3256,9 @@ static void virtio_net_handle_migration_primary(VirtIONet *n, MigrationState *s)
     if (migration_in_setup(s) && !should_be_hidden) {
         if (failover_unplug_primary(n, dev)) {
             vmstate_unregister(VMSTATE_IF(dev), qdev_get_vmsd(dev), dev);
+            if (PCI_DEVICE(dev)->has_rom) {
+                vmstate_unregister_ram(&PCI_DEVICE(dev)->rom , dev);
+            }
             qapi_event_send_unplug_primary(dev->id);
             qatomic_set(&n->failover_primary_hidden, true);
         } else {
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-07-21 15:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-20 18:16 [PATCH] failover: unregister ram on unplug Laurent Vivier
2021-07-21  8:58 ` Igor Mammedov
2021-07-21  9:31   ` Laurent Vivier
2021-07-21 10:41   ` Michael S. Tsirkin
2021-07-21 10:49     ` Laurent Vivier
2021-07-21 15:36       ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).