aboutsummaryrefslogtreecommitdiff
path: root/qapi
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2023-10-18 13:55:11 +0200
committerJuan Quintela <quintela@redhat.com>2023-10-31 08:44:33 +0100
commit8846b5bfca761d599974482c21fa6da3d3c13a70 (patch)
tree80922a10291b4f2da24f6fcf2196eb36cfe4e87a /qapi
parent40101f320d6bf504663327cd12e99f36555a1f56 (diff)
downloadqemu-8846b5bfca761d599974482c21fa6da3d3c13a70.zip
qemu-8846b5bfca761d599974482c21fa6da3d3c13a70.tar.gz
qemu-8846b5bfca761d599974482c21fa6da3d3c13a70.tar.bz2
migration: migrate 'blk' command option is deprecated.
Use blocked-mirror with NBD instead. Acked-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Message-ID: <20231018115513.2163-4-quintela@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/migration.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/qapi/migration.json b/qapi/migration.json
index fa7f4f2..3765c2b 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -1526,8 +1526,8 @@
#
# Features:
#
-# @deprecated: Member @inc is deprecated. Use blockdev-mirror with
-# NBD instead.
+# @deprecated: Members @inc and @blk are deprecated. Use
+# blockdev-mirror with NBD instead.
#
# Returns: nothing on success
#
@@ -1550,7 +1550,8 @@
# <- { "return": {} }
##
{ 'command': 'migrate',
- 'data': {'uri': 'str', '*blk': 'bool',
+ 'data': {'uri': 'str',
+ '*blk': { 'type': 'bool', 'features': [ 'deprecated' ] },
'*inc': { 'type': 'bool', 'features': [ 'deprecated' ] },
'*detach': 'bool', '*resume': 'bool' } }