mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03: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
|
@ -1100,7 +1100,7 @@ static void migration_bitmap_free(struct BitmapRcu *bmap)
|
|||
g_free(bmap);
|
||||
}
|
||||
|
||||
static void migration_end(void)
|
||||
static void ram_migration_cleanup(void *opaque)
|
||||
{
|
||||
/* caller have hold iothread lock or is in a bh, so there is
|
||||
* no writing race against this migration_bitmap
|
||||
|
@ -1124,11 +1124,6 @@ static void migration_end(void)
|
|||
XBZRLE_cache_unlock();
|
||||
}
|
||||
|
||||
static void ram_migration_cancel(void *opaque)
|
||||
{
|
||||
migration_end();
|
||||
}
|
||||
|
||||
static void reset_ram_globals(void)
|
||||
{
|
||||
last_seen_block = NULL;
|
||||
|
@ -1685,7 +1680,7 @@ static SaveVMHandlers savevm_ram_handlers = {
|
|||
.save_live_complete = ram_save_complete,
|
||||
.save_live_pending = ram_save_pending,
|
||||
.load_state = ram_load,
|
||||
.cleanup = ram_migration_cancel,
|
||||
.cleanup = ram_migration_cleanup,
|
||||
};
|
||||
|
||||
void ram_mig_init(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue