[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v6 04/28] migration: new postcopy-pause state
From: |
Peter Xu |
Subject: |
[Qemu-devel] [PATCH v6 04/28] migration: new postcopy-pause state |
Date: |
Thu, 8 Feb 2018 18:31:08 +0800 |
Introducing a new state "postcopy-paused", which can be used when the
postcopy migration is paused. It is targeted for postcopy network
failure recovery.
Reviewed-by: Dr. David Alan Gilbert <address@hidden>
Signed-off-by: Peter Xu <address@hidden>
---
migration/migration.c | 2 ++
qapi/migration.json | 5 ++++-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/migration/migration.c b/migration/migration.c
index 9d2660dd6f..e8a79bb181 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -535,6 +535,7 @@ static bool migration_is_setup_or_active(int state)
switch (state) {
case MIGRATION_STATUS_ACTIVE:
case MIGRATION_STATUS_POSTCOPY_ACTIVE:
+ case MIGRATION_STATUS_POSTCOPY_PAUSED:
case MIGRATION_STATUS_SETUP:
case MIGRATION_STATUS_PRE_SWITCHOVER:
case MIGRATION_STATUS_DEVICE:
@@ -614,6 +615,7 @@ MigrationInfo *qmp_query_migrate(Error **errp)
case MIGRATION_STATUS_POSTCOPY_ACTIVE:
case MIGRATION_STATUS_PRE_SWITCHOVER:
case MIGRATION_STATUS_DEVICE:
+ case MIGRATION_STATUS_POSTCOPY_PAUSED:
/* TODO add some postcopy stats */
info->has_status = true;
info->has_total_time = true;
diff --git a/qapi/migration.json b/qapi/migration.json
index 4cd3d13158..49d27f3b29 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -89,6 +89,8 @@
#
# @postcopy-active: like active, but now in postcopy mode. (since 2.5)
#
+# @postcopy-paused: during postcopy but paused. (since 2.12)
+#
# @completed: migration is finished.
#
# @failed: some error occurred during migration process.
@@ -106,7 +108,8 @@
##
{ 'enum': 'MigrationStatus',
'data': [ 'none', 'setup', 'cancelling', 'cancelled',
- 'active', 'postcopy-active', 'completed', 'failed', 'colo',
+ 'active', 'postcopy-active', 'postcopy-paused',
+ 'completed', 'failed', 'colo',
'pre-switchover', 'device' ] }
##
--
2.14.3
- [Qemu-devel] [PATCH v6 00/28] Migration: postcopy failure recovery, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 01/28] migration: better error handling with QEMUFile, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 03/28] migration: provide postcopy_fault_thread_notify(), Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 02/28] migration: reuse mis->userfault_quit_fd, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 05/28] migration: implement "postcopy-pause" src logic, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 04/28] migration: new postcopy-pause state,
Peter Xu <=
- [Qemu-devel] [PATCH v6 06/28] migration: allow dst vm pause on postcopy, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 07/28] migration: allow src return path to pause, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 08/28] migration: allow send_rq to fail, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 09/28] migration: allow fault thread to pause, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 10/28] qmp: hmp: add migrate "resume" option, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 11/28] migration: pass MigrationState to migrate_init(), Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 12/28] migration: rebuild channel on source, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 13/28] migration: new state "postcopy-recover", Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 14/28] migration: wakeup dst ram-load-thread for recover, Peter Xu, 2018/02/08
- [Qemu-devel] [PATCH v6 15/28] migration: new cmd MIG_CMD_RECV_BITMAP, Peter Xu, 2018/02/08