Migration/colo.c: Make COLO node running after failover
Delay to close COLO for auto start VM after failover. Signed-off-by: Zhang Chen <chen.zhang@intel.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-Id: <20190303145021.2962-4-chen.zhang@intel.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
b8b5734b09
commit
db00972922
@ -874,7 +874,6 @@ out:
|
||||
qemu_fclose(mis->to_src_file);
|
||||
mis->to_src_file = NULL;
|
||||
}
|
||||
migration_incoming_disable_colo();
|
||||
|
||||
rcu_unregister_thread();
|
||||
return NULL;
|
||||
|
@ -417,6 +417,9 @@ static void process_incoming_migration_bh(void *opaque)
|
||||
} else {
|
||||
runstate_set(RUN_STATE_PAUSED);
|
||||
}
|
||||
} else if (migration_incoming_colo_enabled()) {
|
||||
migration_incoming_disable_colo();
|
||||
vm_start();
|
||||
} else {
|
||||
runstate_set(global_state_get_runstate());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user