qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 34/36] migration: Add counts of updating the dirty b


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 34/36] migration: Add counts of updating the dirty bitmap
Date: Mon, 5 May 2014 22:30:32 +0200

From: ChenLiang <address@hidden>

Add counts to log the times of updating the dirty bitmap.

Signed-off-by: ChenLiang <address@hidden>
Signed-off-by: Gonglei <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
Signed-off-by: Juan Quintela <address@hidden>
---
 arch_init.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch_init.c b/arch_init.c
index 0ffecee..c02bce6 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -111,6 +111,8 @@ static bool mig_throttle_on;
 static int dirty_rate_high_cnt;
 static void check_guest_throttling(void);

+static uint64_t bitmap_sync_count;
+
 /***********************************************************/
 /* ram save/restore */

@@ -488,6 +490,8 @@ static void migration_bitmap_sync(void)
     int64_t end_time;
     int64_t bytes_xfer_now;

+    bitmap_sync_count++;
+
     if (!bytes_xfer_prev) {
         bytes_xfer_prev = ram_bytes_transferred();
     }
@@ -732,6 +736,7 @@ static int ram_save_setup(QEMUFile *f, void *opaque)

     mig_throttle_on = false;
     dirty_rate_high_cnt = 0;
+    bitmap_sync_count = 0;

     if (migrate_use_xbzrle()) {
         XBZRLE_cache_lock();
-- 
1.9.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]