migration: Fix block_bitmap_mapping migration
It is valid that params->has_block_bitmap_mapping is true and
params->block_bitmap_mapping is NULL. So we can't use the trick of
having a single function.
Move to two functions one for each value and the tests are fixed.
Fixes: b804b35b1c
migration: Create migrate_block_bitmap_mapping() function
Reported-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Message-Id: <20230503181036.14890-1-quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
f6b761bdbd
commit
3cba22c9ad
@ -606,11 +606,9 @@ static int init_dirty_bitmap_migration(DBMSaveState *s)
|
||||
GHashTable *handled_by_blk = g_hash_table_new(NULL, NULL);
|
||||
BlockBackend *blk;
|
||||
GHashTable *alias_map = NULL;
|
||||
const BitmapMigrationNodeAliasList *block_bitmap_mapping =
|
||||
migrate_block_bitmap_mapping();
|
||||
|
||||
if (block_bitmap_mapping) {
|
||||
alias_map = construct_alias_map(block_bitmap_mapping, true,
|
||||
if (migrate_has_block_bitmap_mapping()) {
|
||||
alias_map = construct_alias_map(migrate_block_bitmap_mapping(), true,
|
||||
&error_abort);
|
||||
}
|
||||
|
||||
@ -1159,8 +1157,6 @@ static int dirty_bitmap_load_header(QEMUFile *f, DBMLoadState *s,
|
||||
static int dirty_bitmap_load(QEMUFile *f, void *opaque, int version_id)
|
||||
{
|
||||
GHashTable *alias_map = NULL;
|
||||
const BitmapMigrationNodeAliasList *block_bitmap_mapping =
|
||||
migrate_block_bitmap_mapping();
|
||||
DBMLoadState *s = &((DBMState *)opaque)->load;
|
||||
int ret = 0;
|
||||
|
||||
@ -1172,9 +1168,9 @@ static int dirty_bitmap_load(QEMUFile *f, void *opaque, int version_id)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (block_bitmap_mapping) {
|
||||
alias_map = construct_alias_map(block_bitmap_mapping,
|
||||
false, &error_abort);
|
||||
if (migrate_has_block_bitmap_mapping()) {
|
||||
alias_map = construct_alias_map(migrate_block_bitmap_mapping(), false,
|
||||
&error_abort);
|
||||
}
|
||||
|
||||
do {
|
||||
|
@ -626,6 +626,13 @@ const BitmapMigrationNodeAliasList *migrate_block_bitmap_mapping(void)
|
||||
return s->parameters.block_bitmap_mapping;
|
||||
}
|
||||
|
||||
bool migrate_has_block_bitmap_mapping(void)
|
||||
{
|
||||
MigrationState *s = migrate_get_current();
|
||||
|
||||
return s->parameters.has_block_bitmap_mapping;
|
||||
}
|
||||
|
||||
bool migrate_block_incremental(void)
|
||||
{
|
||||
MigrationState *s = migrate_get_current();
|
||||
|
@ -71,6 +71,8 @@ bool migrate_cap_set(int cap, bool value, Error **errp);
|
||||
/* parameters */
|
||||
|
||||
const BitmapMigrationNodeAliasList *migrate_block_bitmap_mapping(void);
|
||||
bool migrate_has_block_bitmap_mapping(void);
|
||||
|
||||
bool migrate_block_incremental(void);
|
||||
uint32_t migrate_checkpoint_delay(void);
|
||||
int migrate_compress_level(void);
|
||||
|
Loading…
Reference in New Issue
Block a user