38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
|
From 306e49f278d465051e83253022252b1c69737eb1 Mon Sep 17 00:00:00 2001
|
||
|
From: Juan Quintela <quintela@redhat.com>
|
||
|
Date: Fri, 1 Feb 2013 12:39:08 +0100
|
||
|
Subject: [PATCH 202/246] migration: calculate end time after we have sent the
|
||
|
data
|
||
|
|
||
|
Signed-off-by: Juan Quintela <quintela@redhat.com>
|
||
|
|
||
|
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
|
||
|
---
|
||
|
migration.c | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/migration.c b/migration.c
|
||
|
index 3584a24..0026f08 100644
|
||
|
--- a/migration.c
|
||
|
+++ b/migration.c
|
||
|
@@ -673,7 +673,7 @@ static void *buffered_file_thread(void *opaque)
|
||
|
qemu_mutex_unlock_iothread();
|
||
|
|
||
|
while (true) {
|
||
|
- int64_t current_time = qemu_get_clock_ms(rt_clock);
|
||
|
+ int64_t current_time;
|
||
|
uint64_t pending_size;
|
||
|
|
||
|
qemu_mutex_lock_iothread();
|
||
|
@@ -727,6 +727,7 @@ static void *buffered_file_thread(void *opaque)
|
||
|
}
|
||
|
}
|
||
|
qemu_mutex_unlock_iothread();
|
||
|
+ current_time = qemu_get_clock_ms(rt_clock);
|
||
|
if (current_time >= initial_time + BUFFER_DELAY) {
|
||
|
uint64_t transferred_bytes = s->bytes_xfer;
|
||
|
uint64_t time_spent = current_time - initial_time;
|
||
|
--
|
||
|
1.8.2.1
|
||
|
|