summaryrefslogtreecommitdiff
path: root/qapi-schema.json
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2011-11-28 11:59:37 -0200
committerLuiz Capitulino <lcapitulino@redhat.com>2011-12-06 11:40:01 -0200
commit3dc853832db7bf8ac3878e0666c639d3bc02b587 (patch)
tree3a7cfd6a4412b73c1cedde073c18f8bb1be0b274 /qapi-schema.json
parent4f0a993bf349e61632113a11e85ef588c66b421d (diff)
downloadqemu-3dc853832db7bf8ac3878e0666c639d3bc02b587.tar.gz
qapi: Convert migrate_set_speed
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r--qapi-schema.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json
index d9b9fa10d9..f358b490b0 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -1153,3 +1153,18 @@
# Since: 0.14.0
##
{ 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
+
+##
+# @migrate_set_speed
+#
+# Set maximum speed for migration.
+#
+# @value: maximum speed in bytes.
+#
+# Returns: nothing on success
+#
+# Notes: A value lesser than zero will be automatically round up to zero.
+#
+# Since: 0.14.0
+##
+{ 'command': 'migrate_set_speed', 'data': {'value': 'int'} }