]> Git Repo - qemu.git/commitdiff
migration: No need to call trace_migrate_set_state()
authorJuan Quintela <[email protected]>
Tue, 16 Jun 2015 23:38:25 +0000 (01:38 +0200)
committerJuan Quintela <[email protected]>
Tue, 7 Jul 2015 12:54:54 +0000 (14:54 +0200)
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 <[email protected]>
Reviewed-by: Dr. David Alan Gilbert <[email protected]>
migration/migration.c

index 78eb71535e853b0d0e59ccef24df44324e14c79a..ffaa5c8a154c56ad71e1c31f1d0c5022a64a0683 100644 (file)
@@ -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;
This page took 0.029232 seconds and 4 git commands to generate.