]> git.proxmox.com Git - qemu.git/commitdiff
migration: calculate expected_downtime
authorJuan Quintela <quintela@redhat.com>
Fri, 1 Feb 2013 12:22:37 +0000 (13:22 +0100)
committerJuan Quintela <quintela@redhat.com>
Fri, 22 Feb 2013 09:12:52 +0000 (10:12 +0100)
We removed the calculation in commit e4ed1541ac9413eac494a03532e34beaf8a7d1c5

Now we add it back.  We need to create dirty_bytes_rate because we
can't include cpu-all.h from migration.c, and there is no other way to
include TARGET_PAGE_SIZE.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
arch_init.c
include/migration/migration.h
migration.c

index 8da868b98838c957a0980236e786bf5b89101da5..8daeafaf5c9975a3d5306a1f7e93edf7dd800ca4 100644 (file)
@@ -414,6 +414,7 @@ static void migration_bitmap_sync(void)
     if (end_time > start_time + 1000) {
         s->dirty_pages_rate = num_dirty_pages_period * 1000
             / (end_time - start_time);
+        s->dirty_bytes_rate = s->dirty_pages_rate * TARGET_PAGE_SIZE;
         start_time = end_time;
         num_dirty_pages_period = 0;
     }
index a8c963973200ec378b6ea8d95b8344ee458a9b7d..d1214097fe4e7bf6400fd1f1532c6e604a5929ea 100644 (file)
@@ -51,6 +51,7 @@ struct MigrationState
     int64_t downtime;
     int64_t expected_downtime;
     int64_t dirty_pages_rate;
+    int64_t dirty_bytes_rate;
     bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
     int64_t xbzrle_cache_size;
     bool complete;
index 6649e3a689543be27762e8349ed7355fb107ae0c..11725ae3fc00ca95be6f19d484ec847eb939e8ba 100644 (file)
@@ -738,6 +738,11 @@ static void *buffered_file_thread(void *opaque)
             DPRINTF("transferred %" PRIu64 " time_spent %" PRIu64
                     " bandwidth %g max_size %" PRId64 "\n",
                     transferred_bytes, time_spent, bandwidth, max_size);
+            /* if we haven't sent anything, we don't want to recalculate
+               10000 is a small enough number for our purposes */
+            if (s->dirty_bytes_rate && transferred_bytes > 10000) {
+                s->expected_downtime = s->dirty_bytes_rate / bandwidth;
+            }
 
             s->bytes_xfer = 0;
             sleep_time = 0;