summaryrefslogtreecommitdiffstats
path: root/hmp.c
diff options
context:
space:
mode:
authorPeter Xu2018-05-02 12:47:37 +0200
committerJuan Quintela2018-05-15 22:12:41 +0200
commit3b563c4be01f42d2a4e641d50736bd5ac8e3b15f (patch)
tree0af17a17b6c181a6b73ab1999a33be772a26a3da /hmp.c
parentqmp/migration: new command migrate-recover (diff)
downloadqemu-3b563c4be01f42d2a4e641d50736bd5ac8e3b15f.tar.gz
qemu-3b563c4be01f42d2a4e641d50736bd5ac8e3b15f.tar.xz
qemu-3b563c4be01f42d2a4e641d50736bd5ac8e3b15f.zip
hmp/migration: add migrate_recover command
Sister command to migrate-recover in QMP. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Peter Xu <peterx@redhat.com> Message-Id: <20180502104740.12123-22-peterx@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'hmp.c')
-rw-r--r--hmp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/hmp.c b/hmp.c
index a7aa878788..2a36c1cf8d 100644
--- a/hmp.c
+++ b/hmp.c
@@ -1517,6 +1517,16 @@ void hmp_migrate_incoming(Monitor *mon, const QDict *qdict)
hmp_handle_error(mon, &err);
}
+void hmp_migrate_recover(Monitor *mon, const QDict *qdict)
+{
+ Error *err = NULL;
+ const char *uri = qdict_get_str(qdict, "uri");
+
+ qmp_migrate_recover(uri, &err);
+
+ hmp_handle_error(mon, &err);
+}
+
/* Kept for backwards compatibility */
void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
{