22c213
From c9e3d13d70a24bf606ce351886b27bdca25ef4dc Mon Sep 17 00:00:00 2001
22c213
From: Juan Quintela <quintela@redhat.com>
22c213
Date: Tue, 3 Mar 2020 14:51:41 +0000
22c213
Subject: [PATCH 09/18] migration: Create migration_is_running()
22c213
22c213
RH-Author: Juan Quintela <quintela@redhat.com>
22c213
Message-id: <20200303145143.149290-9-quintela@redhat.com>
22c213
Patchwork-id: 94115
22c213
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH v2 08/10] migration: Create migration_is_running()
22c213
Bugzilla: 1738451
22c213
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
22c213
RH-Acked-by: Peter Xu <peterx@redhat.com>
22c213
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
22c213
This function returns true if we are in the middle of a migration.
22c213
It is like migration_is_setup_or_active() with CANCELLING and COLO.
22c213
Adapt all callers that are needed.
22c213
22c213
Signed-off-by: Juan Quintela <quintela@redhat.com>
22c213
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
(cherry picked from commit 392d87e21325fdb01210176faa07472b4985ccf0)
22c213
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
22c213
---
22c213
 migration/migration.c | 29 ++++++++++++++++++++++++-----
22c213
 migration/migration.h |  1 +
22c213
 migration/savevm.c    |  4 +---
22c213
 3 files changed, 26 insertions(+), 8 deletions(-)
22c213
22c213
diff --git a/migration/migration.c b/migration/migration.c
22c213
index 30c53c6..eb50d77 100644
22c213
--- a/migration/migration.c
22c213
+++ b/migration/migration.c
22c213
@@ -831,6 +831,27 @@ bool migration_is_setup_or_active(int state)
22c213
     }
22c213
 }
22c213
 
22c213
+bool migration_is_running(int state)
22c213
+{
22c213
+    switch (state) {
22c213
+    case MIGRATION_STATUS_ACTIVE:
22c213
+    case MIGRATION_STATUS_POSTCOPY_ACTIVE:
22c213
+    case MIGRATION_STATUS_POSTCOPY_PAUSED:
22c213
+    case MIGRATION_STATUS_POSTCOPY_RECOVER:
22c213
+    case MIGRATION_STATUS_SETUP:
22c213
+    case MIGRATION_STATUS_PRE_SWITCHOVER:
22c213
+    case MIGRATION_STATUS_DEVICE:
22c213
+    case MIGRATION_STATUS_WAIT_UNPLUG:
22c213
+    case MIGRATION_STATUS_CANCELLING:
22c213
+    case MIGRATION_STATUS_COLO:
22c213
+        return true;
22c213
+
22c213
+    default:
22c213
+        return false;
22c213
+
22c213
+    }
22c213
+}
22c213
+
22c213
 static void populate_time_info(MigrationInfo *info, MigrationState *s)
22c213
 {
22c213
     info->has_status = true;
22c213
@@ -1090,7 +1111,7 @@ void qmp_migrate_set_capabilities(MigrationCapabilityStatusList *params,
22c213
     MigrationCapabilityStatusList *cap;
22c213
     bool cap_list[MIGRATION_CAPABILITY__MAX];
22c213
 
22c213
-    if (migration_is_setup_or_active(s->state)) {
22c213
+    if (migration_is_running(s->state)) {
22c213
         error_setg(errp, QERR_MIGRATION_ACTIVE);
22c213
         return;
22c213
     }
22c213
@@ -1603,7 +1624,7 @@ static void migrate_fd_cancel(MigrationState *s)
22c213
 
22c213
     do {
22c213
         old_state = s->state;
22c213
-        if (!migration_is_setup_or_active(old_state)) {
22c213
+        if (!migration_is_running(old_state)) {
22c213
             break;
22c213
         }
22c213
         /* If the migration is paused, kick it out of the pause */
22c213
@@ -1900,9 +1921,7 @@ static bool migrate_prepare(MigrationState *s, bool blk, bool blk_inc,
22c213
         return true;
22c213
     }
22c213
 
22c213
-    if (migration_is_setup_or_active(s->state) ||
22c213
-        s->state == MIGRATION_STATUS_CANCELLING ||
22c213
-        s->state == MIGRATION_STATUS_COLO) {
22c213
+    if (migration_is_running(s->state)) {
22c213
         error_setg(errp, QERR_MIGRATION_ACTIVE);
22c213
         return false;
22c213
     }
22c213
diff --git a/migration/migration.h b/migration/migration.h
22c213
index 0b1b0d4..a2b2336 100644
22c213
--- a/migration/migration.h
22c213
+++ b/migration/migration.h
22c213
@@ -279,6 +279,7 @@ void migrate_fd_error(MigrationState *s, const Error *error);
22c213
 void migrate_fd_connect(MigrationState *s, Error *error_in);
22c213
 
22c213
 bool migration_is_setup_or_active(int state);
22c213
+bool migration_is_running(int state);
22c213
 
22c213
 void migrate_init(MigrationState *s);
22c213
 bool migration_is_blocked(Error **errp);
22c213
diff --git a/migration/savevm.c b/migration/savevm.c
22c213
index a80bb52..144ecf0 100644
22c213
--- a/migration/savevm.c
22c213
+++ b/migration/savevm.c
22c213
@@ -1506,9 +1506,7 @@ static int qemu_savevm_state(QEMUFile *f, Error **errp)
22c213
     MigrationState *ms = migrate_get_current();
22c213
     MigrationStatus status;
22c213
 
22c213
-    if (migration_is_setup_or_active(ms->state) ||
22c213
-        ms->state == MIGRATION_STATUS_CANCELLING ||
22c213
-        ms->state == MIGRATION_STATUS_COLO) {
22c213
+    if (migration_is_running(ms->state)) {
22c213
         error_setg(errp, QERR_MIGRATION_ACTIVE);
22c213
         return -EINVAL;
22c213
     }
22c213
-- 
22c213
1.8.3.1
22c213