mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
migration: code clean up
Just clean up code, no behavior change. Signed-off-by: Liang Li <liang.z.li@intel.com> Reviewed-by: Juan Quintela <quintela@redhat.com>al3 Reviewed-by: Amit Shah <amit.shah@redhat.com>al3 Signed-off-by: Juan Quintela <quintela@redhat.com>al3
This commit is contained in:
parent
d1a8548c10
commit
6ad2a215e7
2 changed files with 4 additions and 14 deletions
|
@ -591,7 +591,7 @@ static int64_t get_remaining_dirty(void)
|
|||
|
||||
/* Called with iothread lock taken. */
|
||||
|
||||
static void blk_mig_cleanup(void)
|
||||
static void block_migration_cleanup(void *opaque)
|
||||
{
|
||||
BlkMigDevState *bmds;
|
||||
BlkMigBlock *blk;
|
||||
|
@ -618,11 +618,6 @@ static void blk_mig_cleanup(void)
|
|||
blk_mig_unlock();
|
||||
}
|
||||
|
||||
static void block_migration_cancel(void *opaque)
|
||||
{
|
||||
blk_mig_cleanup();
|
||||
}
|
||||
|
||||
static int block_save_setup(QEMUFile *f, void *opaque)
|
||||
{
|
||||
int ret;
|
||||
|
@ -884,7 +879,7 @@ static SaveVMHandlers savevm_block_handlers = {
|
|||
.save_live_complete = block_save_complete,
|
||||
.save_live_pending = block_save_pending,
|
||||
.load_state = block_load,
|
||||
.cleanup = block_migration_cancel,
|
||||
.cleanup = block_migration_cleanup,
|
||||
.is_active = block_is_active,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue