diff options
author | Juan Quintela <quintela@redhat.com> | 2011-02-23 00:43:59 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2011-10-20 13:23:54 +0200 |
commit | 7073693bfbde541eca0cc778e1b2c30d43a65c4b (patch) | |
tree | ce67671e392d100afe2ca0fcfa33ece5ab874b19 | |
parent | e0eb7390b02228d44e873a2071593af9ce7cac82 (diff) | |
download | hqemu-7073693bfbde541eca0cc778e1b2c30d43a65c4b.zip hqemu-7073693bfbde541eca0cc778e1b2c30d43a65c4b.tar.gz |
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>
-rw-r--r-- | migration.c | 4 | ||||
-rw-r--r-- | migration.h | 2 | ||||
-rw-r--r-- | ui/spice-core.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/migration.c b/migration.c index 46db37b..b5929db 100644 --- a/migration.c +++ b/migration.c @@ -364,9 +364,9 @@ void remove_migration_state_change_notifier(Notifier *notify) notifier_list_remove(&migration_state_notifiers, notify); } -int get_migration_state(void) +bool migration_has_finished(MigrationState *s) { - return migrate_get_current()->state; + return s->state == MIG_STATE_COMPLETED; } void migrate_fd_connect(MigrationState *s) diff --git a/migration.h b/migration.h index e1299b9..23d347a 100644 --- a/migration.h +++ b/migration.h @@ -84,7 +84,7 @@ void migrate_fd_connect(MigrationState *s); void add_migration_state_change_notifier(Notifier *notify); void remove_migration_state_change_notifier(Notifier *notify); -int get_migration_state(void); +bool migration_has_finished(MigrationState *); uint64_t ram_bytes_remaining(void); uint64_t ram_bytes_transferred(void); diff --git a/ui/spice-core.c b/ui/spice-core.c index 3cbc721..b33366e 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -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 |