mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
migration: Remove 'inc' option from migrate command
The block incremental option for block migration has been deprecated
in 8.2 in favor of using the block-mirror feature. Remove it now.
Deprecation commit 40101f320d
("migration: migrate 'inc' command
option is deprecated.").
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
parent
f7b1cd3c2e
commit
61c4e39f73
9 changed files with 39 additions and 129 deletions
|
@ -909,26 +909,21 @@ ERST
|
|||
|
||||
{
|
||||
.name = "migrate",
|
||||
.args_type = "detach:-d,blk:-b,inc:-i,resume:-r,uri:s",
|
||||
.params = "[-d] [-b] [-i] [-r] uri",
|
||||
.args_type = "detach:-d,blk:-b,resume:-r,uri:s",
|
||||
.params = "[-d] [-b] [-r] uri",
|
||||
.help = "migrate to URI (using -d to not wait for completion)"
|
||||
"\n\t\t\t -b for migration without shared storage with"
|
||||
" full copy of disk\n\t\t\t -i for migration without "
|
||||
"shared storage with incremental copy of disk "
|
||||
"(base image shared between src and destination)"
|
||||
"\n\t\t\t -r to resume a paused migration",
|
||||
" full copy of disk\n\t\t\t -r to resume a paused migration",
|
||||
.cmd = hmp_migrate,
|
||||
},
|
||||
|
||||
|
||||
SRST
|
||||
``migrate [-d] [-b] [-i]`` *uri*
|
||||
``migrate [-d] [-b]`` *uri*
|
||||
Migrate to *uri* (using -d to not wait for completion).
|
||||
|
||||
``-b``
|
||||
for migration with full copy of disk
|
||||
``-i``
|
||||
for migration with incremental copy of disk (base image is shared)
|
||||
ERST
|
||||
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue