migration: Remove MigrationState from block_cleanup_parameters()

This makes the function more regular with everything else.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
This commit is contained in:
Juan Quintela
2023-03-02 12:10:33 +01:00
parent b7b73122dd
commit b1a8795654
3 changed files with 6 additions and 4 deletions

View File

@ -600,8 +600,10 @@ void migrate_set_block_incremental(bool value)
/* parameters helpers */
void block_cleanup_parameters(MigrationState *s)
void block_cleanup_parameters(void)
{
MigrationState *s = migrate_get_current();
if (s->must_remove_block_options) {
/* setting to false can never fail */
migrate_cap_set(MIGRATION_CAPABILITY_BLOCK, false, &error_abort);