aboutsummaryrefslogtreecommitdiff
path: root/qapi
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2023-10-18 13:55:10 +0200
committerJuan Quintela <quintela@redhat.com>2023-10-31 08:44:33 +0100
commit40101f320d6bf504663327cd12e99f36555a1f56 (patch)
tree37dd44c8f2d1233367d193a46bbeae4d18d8532b /qapi
parentbf1695c2523510ff8945d88c971b25baac66543d (diff)
downloadqemu-40101f320d6bf504663327cd12e99f36555a1f56.zip
qemu-40101f320d6bf504663327cd12e99f36555a1f56.tar.gz
qemu-40101f320d6bf504663327cd12e99f36555a1f56.tar.bz2
migration: migrate 'inc' command option is deprecated.
Use blockdev-mirror with NBD instead. Reviewed-by: Thomas Huth <thuth@redhat.com> Acked-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Message-ID: <20231018115513.2163-3-quintela@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/migration.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/qapi/migration.json b/qapi/migration.json
index db3df12..fa7f4f2 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -1524,6 +1524,11 @@
#
# @resume: resume one paused migration, default "off". (since 3.0)
#
+# Features:
+#
+# @deprecated: Member @inc is deprecated. Use blockdev-mirror with
+# NBD instead.
+#
# Returns: nothing on success
#
# Since: 0.14
@@ -1545,7 +1550,8 @@
# <- { "return": {} }
##
{ 'command': 'migrate',
- 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool',
+ 'data': {'uri': 'str', '*blk': 'bool',
+ '*inc': { 'type': 'bool', 'features': [ 'deprecated' ] },
'*detach': 'bool', '*resume': 'bool' } }
##