diff options
| author | Fabiano Rosas <farosas@suse.de> | 2024-04-30 11:27:33 -0300 |
|---|---|---|
| committer | Fabiano Rosas <farosas@suse.de> | 2024-05-08 09:20:58 -0300 |
| commit | 61c4e39f7301f67408024346ad3eb5335aec0311 (patch) | |
| tree | 32d0cbc7db41d2a8152025440e12a4005d7adc5a /migration/block.c | |
| parent | f7b1cd3c2ebbc102b8edfacd5c5cd10c04dc887d (diff) | |
| download | focaccia-qemu-61c4e39f7301f67408024346ad3eb5335aec0311.tar.gz focaccia-qemu-61c4e39f7301f67408024346ad3eb5335aec0311.zip | |
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>
Diffstat (limited to 'migration/block.c')
| -rw-r--r-- | migration/block.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/migration/block.c b/migration/block.c index bae6e94891..87ec1a7e68 100644 --- a/migration/block.c +++ b/migration/block.c @@ -419,7 +419,6 @@ static int init_blk_migration(QEMUFile *f, Error **errp) bmds->bulk_completed = 0; bmds->total_sectors = sectors; bmds->completed_sectors = 0; - bmds->shared_base = migrate_block_incremental(); assert(i < num_bs); bmds_bs[i].bmds = bmds; |