From: Marc-André Lureau Date: Thu, 23 Jun 2016 11:18:01 +0000 (+0200) Subject: qmp-commands: move 'migrate_set_speed' doc to schema X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ab9895337c4613ddee1b56f4a1ce3025155483c7;p=qemu.git qmp-commands: move 'migrate_set_speed' doc to schema Signed-off-by: Marc-André Lureau Signed-off-by: Markus Armbruster --- diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index ed4389f2e8..889955eb30 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -318,20 +318,6 @@ Example: -> { "execute": "query-migrate-cache-size" } <- { "return": 67108864 } -migrate_set_speed ------------------ - -Set maximum speed for migrations. - -Arguments: - -- "value": maximum speed, in bytes per second (json-int) - -Example: - --> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } } -<- { "return": {} } - x-colo-lost-heartbeat -------------------- diff --git a/qapi-schema.json b/qapi-schema.json index 8f844aa735..092008a4ff 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2622,13 +2622,19 @@ # # Set maximum speed for migration. # -# @value: maximum speed in bytes. +# @value: maximum speed in bytes per second. # # Returns: nothing on success # # Notes: This command is deprecated in favor of 'migrate-set-parameters' # # Since: 0.14.0 +# +# Example: +# +# -> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } } +# <- { "return": {} } +# ## { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }