Blame SOURCES/kvm-migration-Allow-migrate-recover-to-run-multiple-time.patch

1be5c7
From f5be3d8a5944679c1239b974e0f910f1afe4f532 Mon Sep 17 00:00:00 2001
1be5c7
From: Peter Xu <peterx@redhat.com>
1be5c7
Date: Thu, 31 Mar 2022 11:08:45 -0400
1be5c7
Subject: [PATCH 28/37] migration: Allow migrate-recover to run multiple times
1be5c7
MIME-Version: 1.0
1be5c7
Content-Type: text/plain; charset=UTF-8
1be5c7
Content-Transfer-Encoding: 8bit
1be5c7
1be5c7
RH-Author: Peter Xu <peterx@redhat.com>
1be5c7
RH-MergeRequest: 195: migration: Allow migrate-recover to run multiple times
1be5c7
RH-Commit: [2/2] a2e6b02007a06c9c7f5237289095811c7d7ca1f1
1be5c7
RH-Bugzilla: 2097652
1be5c7
RH-Acked-by: Leonardo Brás <leobras@redhat.com>
1be5c7
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1be5c7
RH-Acked-by: Hanna Reitz <hreitz@redhat.com>
1be5c7
1be5c7
Previously migration didn't have an easy way to cleanup the listening
1be5c7
transport, migrate recovery only allows to execute once.  That's done with a
1be5c7
trick flag in postcopy_recover_triggered.
1be5c7
1be5c7
Now the facility is already there.
1be5c7
1be5c7
Drop postcopy_recover_triggered and instead allows a new migrate-recover to
1be5c7
release the previous listener transport.
1be5c7
1be5c7
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1be5c7
Signed-off-by: Peter Xu <peterx@redhat.com>
1be5c7
Message-Id: <20220331150857.74406-8-peterx@redhat.com>
1be5c7
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
1be5c7
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1be5c7
(cherry picked from commit 08401c0426bc1a5ce4609afd1cda5dd39abbf9fa)
1be5c7
Signed-off-by: Peter Xu <peterx@redhat.com>
1be5c7
---
1be5c7
 migration/migration.c | 13 ++-----------
1be5c7
 migration/migration.h |  1 -
1be5c7
 migration/savevm.c    |  3 ---
1be5c7
 3 files changed, 2 insertions(+), 15 deletions(-)
1be5c7
1be5c7
diff --git a/migration/migration.c b/migration/migration.c
1be5c7
index b787a36789..616c3ff32e 100644
1be5c7
--- a/migration/migration.c
1be5c7
+++ b/migration/migration.c
1be5c7
@@ -2158,11 +2158,8 @@ void qmp_migrate_recover(const char *uri, Error **errp)
1be5c7
         return;
1be5c7
     }
1be5c7
 
1be5c7
-    if (qatomic_cmpxchg(&mis->postcopy_recover_triggered,
1be5c7
-                       false, true) == true) {
1be5c7
-        error_setg(errp, "Migrate recovery is triggered already");
1be5c7
-        return;
1be5c7
-    }
1be5c7
+    /* If there's an existing transport, release it */
1be5c7
+    migration_incoming_transport_cleanup(mis);
1be5c7
 
1be5c7
     /*
1be5c7
      * Note that this call will never start a real migration; it will
1be5c7
@@ -2170,12 +2167,6 @@ void qmp_migrate_recover(const char *uri, Error **errp)
1be5c7
      * to continue using that newly established channel.
1be5c7
      */
1be5c7
     qemu_start_incoming_migration(uri, errp);
1be5c7
-
1be5c7
-    /* Safe to dereference with the assert above */
1be5c7
-    if (*errp) {
1be5c7
-        /* Reset the flag so user could still retry */
1be5c7
-        qatomic_set(&mis->postcopy_recover_triggered, false);
1be5c7
-    }
1be5c7
 }
1be5c7
 
1be5c7
 void qmp_migrate_pause(Error **errp)
1be5c7
diff --git a/migration/migration.h b/migration/migration.h
1be5c7
index 243898e3be..0ae2133326 100644
1be5c7
--- a/migration/migration.h
1be5c7
+++ b/migration/migration.h
1be5c7
@@ -103,7 +103,6 @@ struct MigrationIncomingState {
1be5c7
     struct PostcopyBlocktimeContext *blocktime_ctx;
1be5c7
 
1be5c7
     /* notify PAUSED postcopy incoming migrations to try to continue */
1be5c7
-    bool postcopy_recover_triggered;
1be5c7
     QemuSemaphore postcopy_pause_sem_dst;
1be5c7
     QemuSemaphore postcopy_pause_sem_fault;
1be5c7
 
1be5c7
diff --git a/migration/savevm.c b/migration/savevm.c
1be5c7
index 0bef031acb..b8382aaa64 100644
1be5c7
--- a/migration/savevm.c
1be5c7
+++ b/migration/savevm.c
1be5c7
@@ -2568,9 +2568,6 @@ static bool postcopy_pause_incoming(MigrationIncomingState *mis)
1be5c7
 
1be5c7
     assert(migrate_postcopy_ram());
1be5c7
 
1be5c7
-    /* Clear the triggered bit to allow one recovery */
1be5c7
-    mis->postcopy_recover_triggered = false;
1be5c7
-
1be5c7
     /*
1be5c7
      * Unregister yank with either from/to src would work, since ioc behind it
1be5c7
      * is the same
1be5c7
-- 
1be5c7
2.35.3
1be5c7