mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
7844337d1e
commit
f2bb932491
|
@ -550,7 +550,6 @@ void migrate_fd_error(MigrationState *s)
|
||||||
trace_migrate_fd_error();
|
trace_migrate_fd_error();
|
||||||
assert(s->file == NULL);
|
assert(s->file == NULL);
|
||||||
migrate_set_state(s, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_FAILED);
|
migrate_set_state(s, MIGRATION_STATUS_SETUP, MIGRATION_STATUS_FAILED);
|
||||||
trace_migrate_set_state(MIGRATION_STATUS_FAILED);
|
|
||||||
notifier_list_notify(&migration_state_notifiers, s);
|
notifier_list_notify(&migration_state_notifiers, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -635,7 +634,6 @@ static MigrationState *migrate_init(const MigrationParams *params)
|
||||||
decompress_thread_count;
|
decompress_thread_count;
|
||||||
s->bandwidth_limit = bandwidth_limit;
|
s->bandwidth_limit = bandwidth_limit;
|
||||||
migrate_set_state(s, MIGRATION_STATUS_NONE, MIGRATION_STATUS_SETUP);
|
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);
|
s->total_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
|
||||||
return s;
|
return s;
|
||||||
|
|
Loading…
Reference in New Issue