diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 10:34:00 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:26 +0100 |
commit | 3c3ea00a8c65f73d41ad921333bbee7931414a4f (patch) | |
tree | 60d865089fbef25d47dc3520568100e9ba52d81d | |
parent | d0d3fc7ff9f50dde85f020b9aa8ef8e076f647cd (diff) | |
download | qemu-3c3ea00a8c65f73d41ad921333bbee7931414a4f.zip qemu-3c3ea00a8c65f73d41ad921333bbee7931414a4f.tar.gz qemu-3c3ea00a8c65f73d41ad921333bbee7931414a4f.tar.bz2 |
qmp-commands: move 'migrate-start-postcopy' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r-- | docs/qmp-commands.txt | 10 | ||||
-rw-r--r-- | qapi-schema.json | 6 |
2 files changed, 6 insertions, 10 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index f963066..536bddf 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -456,16 +456,6 @@ Example: -> { "execute": "migrate-set-cache-size", "arguments": { "value": 536870912 } } <- { "return": {} } -migrate-start-postcopy ----------------------- - -Switch an in-progress migration to postcopy mode. Ignored after the end of -migration (or once already in postcopy). - -Example: --> { "execute": "migrate-start-postcopy" } -<- { "return": {} } - query-migrate-cache-size ------------------------ diff --git a/qapi-schema.json b/qapi-schema.json index 1387cd7..116b48b 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1079,6 +1079,12 @@ # command. # # Since: 2.5 +# +# Example: +# +# -> { "execute": "migrate-start-postcopy" } +# <- { "return": {} } +# ## { 'command': 'migrate-start-postcopy' } |