summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2015-06-17 01:38:25 +0200
committerJuan Quintela <quintela@redhat.com>2015-07-07 14:54:54 +0200
commitf2bb932491185a39922dff0514c4b08c092f3c35 (patch)
tree2c4ce85dadfbee8507267a3fd2f9c03ff92218a7
parent7844337d1efb2c47dc3f306d7621e1cafca8ba67 (diff)
downloadhqemu-f2bb932491185a39922dff0514c4b08c092f3c35.zip
hqemu-f2bb932491185a39922dff0514c4b08c092f3c35.tar.gz
migration: No need to call trace_migrate_set_state()
We now use the helper everywhere, so no need to call this on this two places. See on previous commit that there were a place where we missed to mark the trace. Now all tracing is done in migrate_set_state(). Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
-rw-r--r--migration/migration.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/migration/migration.c b/migration/migration.c
index 78eb715..ffaa5c8 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -550,7 +550,6 @@ void migrate_fd_error(MigrationState *s)
trace_migrate_fd_error();
assert(s->file == NULL);
migrate_set_state(s, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_FAILED);
- trace_migrate_set_state(MIGRATION_STATUS_FAILED);
notifier_list_notify(&migration_state_notifiers, s);
}
@@ -635,7 +634,6 @@ static MigrationState *migrate_init(const MigrationParams *params)
decompress_thread_count;
s->bandwidth_limit = bandwidth_limit;
migrate_set_state(s, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
- trace_migrate_set_state(MIGRATION_STATUS_SETUP);
s->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
return s;
OpenPOWER on IntegriCloud