[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v7 07/23] qmp: hmp: add migrate "resume" option
From: |
Peter Xu |
Subject: |
[Qemu-devel] [PATCH v7 07/23] qmp: hmp: add migrate "resume" option |
Date: |
Fri, 9 Mar 2018 17:15:19 +0800 |
It will be used when we want to resume one paused migration.
Reviewed-by: Dr. David Alan Gilbert <address@hidden>
Signed-off-by: Peter Xu <address@hidden>
---
hmp-commands.hx | 7 ++++---
hmp.c | 4 +++-
migration/migration.c | 2 +-
qapi/migration.json | 5 ++++-
4 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/hmp-commands.hx b/hmp-commands.hx
index 964eb515cf..defba474d6 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -895,13 +895,14 @@ ETEXI
{
.name = "migrate",
- .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
- .params = "[-d] [-b] [-i] uri",
+ .args_type = "detach:-d,blk:-b,inc:-i,resume:-r,uri:s",
+ .params = "[-d] [-b] [-i] [-r] uri",
.help = "migrate to URI (using -d to not wait for completion)"
"\n\t\t\t -b for migration without shared storage with"
" full copy of disk\n\t\t\t -i for migration without "
"shared storage with incremental copy of disk "
- "(base image shared between src and destination)",
+ "(base image shared between src and destination)"
+ "\n\t\t\t -r to resume a paused migration",
.cmd = hmp_migrate,
},
diff --git a/hmp.c b/hmp.c
index 016cb5c4f1..4ac4fbcb74 100644
--- a/hmp.c
+++ b/hmp.c
@@ -1904,10 +1904,12 @@ void hmp_migrate(Monitor *mon, const QDict *qdict)
bool detach = qdict_get_try_bool(qdict, "detach", false);
bool blk = qdict_get_try_bool(qdict, "blk", false);
bool inc = qdict_get_try_bool(qdict, "inc", false);
+ bool resume = qdict_get_try_bool(qdict, "resume", false);
const char *uri = qdict_get_str(qdict, "uri");
Error *err = NULL;
- qmp_migrate(uri, !!blk, blk, !!inc, inc, false, false, &err);
+ qmp_migrate(uri, !!blk, blk, !!inc, inc,
+ false, false, true, resume, &err);
if (err) {
hmp_handle_error(mon, &err);
return;
diff --git a/migration/migration.c b/migration/migration.c
index 2d97dd742a..d34653fb51 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -1361,7 +1361,7 @@ bool migration_is_blocked(Error **errp)
void qmp_migrate(const char *uri, bool has_blk, bool blk,
bool has_inc, bool inc, bool has_detach, bool detach,
- Error **errp)
+ bool has_resume, bool resume, Error **errp)
{
Error *local_err = NULL;
MigrationState *s = migrate_get_current();
diff --git a/qapi/migration.json b/qapi/migration.json
index 6142b065a1..11e0736f67 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -1014,6 +1014,8 @@
# @detach: this argument exists only for compatibility reasons and
# is ignored by QEMU
#
+# @resume: resume one paused migration, default "off". (since 2.12)
+#
# Returns: nothing on success
#
# Since: 0.14.0
@@ -1035,7 +1037,8 @@
#
##
{ 'command': 'migrate',
- 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
+ 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool',
+ '*detach': 'bool', '*resume': 'bool' } }
##
# @migrate-incoming:
--
2.14.3
- [Qemu-devel] [PATCH v7 00/23] Migration: postcopy failure recovery, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 01/23] migration: let incoming side use thread context, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 03/23] migration: implement "postcopy-pause" src logic, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 04/23] migration: allow dst vm pause on postcopy, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 02/23] migration: new postcopy-pause state, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 05/23] migration: allow src return path to pause, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 06/23] migration: allow fault thread to pause, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 07/23] qmp: hmp: add migrate "resume" option,
Peter Xu <=
- [Qemu-devel] [PATCH v7 08/23] migration: rebuild channel on source, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 10/23] migration: wakeup dst ram-load-thread for recover, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 09/23] migration: new state "postcopy-recover", Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 11/23] migration: new cmd MIG_CMD_RECV_BITMAP, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 14/23] migration: new message MIG_RP_MSG_RESUME_ACK, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 12/23] migration: new message MIG_RP_MSG_RECV_BITMAP, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 13/23] migration: new cmd MIG_CMD_POSTCOPY_RESUME, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 15/23] migration: introduce SaveVMHandlers.resume_prepare, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 16/23] migration: synchronize dirty bitmap for resume, Peter Xu, 2018/03/09
- [Qemu-devel] [PATCH v7 17/23] migration: setup ramstate for resume, Peter Xu, 2018/03/09