2013-05-25 18:38:28 +00:00
|
|
|
From cc3b3656b4fcca8dcdfe6d174615333d7486ce69 Mon Sep 17 00:00:00 2001
|
2013-05-23 01:48:57 +00:00
|
|
|
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
Date: Fri, 22 Feb 2013 17:36:32 +0100
|
2013-05-25 18:38:28 +00:00
|
|
|
Subject: [PATCH] migration: eliminate last_round
|
2013-05-23 01:48:57 +00:00
|
|
|
|
|
|
|
We will go around the loop exactly once after setting last_round.
|
|
|
|
Eliminate the variable altogether.
|
|
|
|
|
|
|
|
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
|
|
|
|
Reviewed-by: Juan Quintela <quintela@redhat.com>
|
|
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
Signed-off-by: Juan Quintela <quintela@redhat.com>
|
2013-05-25 18:38:28 +00:00
|
|
|
(cherry picked from commit 059f896cefb2776181e39d9ba69345bd9d07d52b)
|
2013-05-23 01:48:57 +00:00
|
|
|
---
|
|
|
|
migration.c | 11 +++++------
|
|
|
|
1 file changed, 5 insertions(+), 6 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/migration.c b/migration.c
|
|
|
|
index 71c6c10..a888f36 100644
|
|
|
|
--- a/migration.c
|
|
|
|
+++ b/migration.c
|
|
|
|
@@ -626,7 +626,6 @@ static void *migration_thread(void *opaque)
|
|
|
|
int64_t max_size = 0;
|
|
|
|
int64_t start_time = initial_time;
|
|
|
|
bool old_vm_running = false;
|
|
|
|
- bool last_round = false;
|
|
|
|
|
|
|
|
DPRINTF("beginning savevm\n");
|
|
|
|
qemu_savevm_state_begin(s->file, &s->params);
|
|
|
|
@@ -650,8 +649,11 @@ static void *migration_thread(void *opaque)
|
|
|
|
vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
|
|
|
|
s->xfer_limit = INT_MAX;
|
|
|
|
qemu_savevm_state_complete(s->file);
|
|
|
|
- last_round = true;
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
+ if (!qemu_file_get_error(s->file)) {
|
|
|
|
+ migrate_finish_set_state(s, MIG_STATE_COMPLETED);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@@ -675,15 +677,13 @@ static void *migration_thread(void *opaque)
|
|
|
|
sleep_time = 0;
|
|
|
|
initial_time = current_time;
|
|
|
|
}
|
|
|
|
- if (!last_round && (s->bytes_xfer >= s->xfer_limit)) {
|
|
|
|
+ if (s->bytes_xfer >= s->xfer_limit) {
|
|
|
|
/* usleep expects microseconds */
|
|
|
|
g_usleep((initial_time + BUFFER_DELAY - current_time)*1000);
|
|
|
|
sleep_time += qemu_get_clock_ms(rt_clock) - current_time;
|
|
|
|
}
|
|
|
|
if (qemu_file_get_error(s->file)) {
|
|
|
|
migrate_finish_set_state(s, MIG_STATE_ERROR);
|
|
|
|
- } else if (last_round) {
|
|
|
|
- migrate_finish_set_state(s, MIG_STATE_COMPLETED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@@ -695,7 +695,6 @@ static void *migration_thread(void *opaque)
|
|
|
|
runstate_set(RUN_STATE_POSTMIGRATE);
|
|
|
|
} else {
|
|
|
|
if (old_vm_running) {
|
|
|
|
- assert(last_round);
|
|
|
|
vm_start();
|
|
|
|
}
|
|
|
|
}
|