mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
migration: Export a function that tells if the migration has finished correctly
This will allow us to hide the state values. Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
e0eb7390b0
commit
7073693bfb
3 changed files with 5 additions and 5 deletions
|
@ -447,9 +447,9 @@ void do_info_spice(Monitor *mon, QObject **ret_data)
|
|||
|
||||
static void migration_state_notifier(Notifier *notifier, void *data)
|
||||
{
|
||||
int state = get_migration_state();
|
||||
MigrationState *s = data;
|
||||
|
||||
if (state == MIG_STATE_COMPLETED) {
|
||||
if (migration_has_finished(s)) {
|
||||
#if SPICE_SERVER_VERSION >= 0x000701 /* 0.7.1 */
|
||||
spice_server_migrate_switch(spice_server);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue