Skip to content

Commit

Permalink
migration: store end_time in a local variable
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Quintela <quintela@redhat.com>

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
  • Loading branch information
Juan Quintela committed Oct 17, 2012
1 parent 79536f4 commit 97d4d96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion migration.c
Expand Up @@ -329,6 +329,7 @@ static void migrate_fd_put_ready(void *opaque)
migrate_fd_error(s);
} else if (ret == 1) {
int old_vm_running = runstate_is_running();
int64_t end_time;

DPRINTF("done iterating\n");
qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
Expand All @@ -339,7 +340,8 @@ static void migrate_fd_put_ready(void *opaque)
} else {
migrate_fd_completed(s);
}
s->total_time = qemu_get_clock_ms(rt_clock) - s->total_time;
end_time = qemu_get_clock_ms(rt_clock);
s->total_time = end_time - s->total_time;
if (s->state != MIG_STATE_COMPLETED) {
if (old_vm_running) {
vm_start();
Expand Down

0 comments on commit 97d4d96

Please sign in to comment.