2013-05-25 18:38:28 +00:00
|
|
|
From 409d6af88505169acec3bf3ae005eba79a981688 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:33 +0100
|
2013-05-25 18:38:28 +00:00
|
|
|
Subject: [PATCH] migration: detect error before sleeping
|
2013-05-23 01:48:57 +00:00
|
|
|
|
|
|
|
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 fd45ee2c643bb3d55de5c54b50c23859ca631a9f)
|
2013-05-23 01:48:57 +00:00
|
|
|
---
|
|
|
|
migration.c | 7 ++++---
|
|
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/migration.c b/migration.c
|
|
|
|
index a888f36..35c3455 100644
|
|
|
|
--- a/migration.c
|
|
|
|
+++ b/migration.c
|
|
|
|
@@ -657,6 +657,10 @@ static void *migration_thread(void *opaque)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ if (qemu_file_get_error(s->file)) {
|
|
|
|
+ migrate_finish_set_state(s, MIG_STATE_ERROR);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
current_time = qemu_get_clock_ms(rt_clock);
|
|
|
|
if (current_time >= initial_time + BUFFER_DELAY) {
|
|
|
|
uint64_t transferred_bytes = s->bytes_xfer;
|
|
|
|
@@ -682,9 +686,6 @@ static void *migration_thread(void *opaque)
|
|
|
|
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);
|
|
|
|
- }
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_mutex_lock_iothread();
|