[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v4 2/8] migration: Add counts of updating the dirty
From: |
arei.gonglei |
Subject: |
[Qemu-devel] [PATCH v4 2/8] migration: Add counts of updating the dirty bitmap |
Date: |
Thu, 27 Mar 2014 11:18:17 +0800 |
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>
---
arch_init.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch_init.c b/arch_init.c
index 2ac68c2..200af0e 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -110,6 +110,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 */
@@ -487,6 +489,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();
}
@@ -734,6 +738,7 @@ static int ram_save_setup(QEMUFile *f, void *opaque)
migration_dirty_pages = ram_pages;
mig_throttle_on = false;
dirty_rate_high_cnt = 0;
+ bitmap_sync_count = 0;
if (migrate_use_xbzrle()) {
qemu_mutex_lock_iothread();
--
1.7.12.4
- [Qemu-devel] [PATCH v4 0/8] migration: Optimizate the xbzrle and fix one corruption issue, arei.gonglei, 2014/03/26
- [Qemu-devel] [PATCH v4 7/8] migration: optimize xbzrle by reducing data copy, arei.gonglei, 2014/03/26
- [Qemu-devel] [PATCH v4 2/8] migration: Add counts of updating the dirty bitmap,
arei.gonglei <=
- [Qemu-devel] [PATCH v4 4/8] migration: expose xbzrle cache miss rate, arei.gonglei, 2014/03/26
- [Qemu-devel] [PATCH v4 8/8] migration: clear the dead code, arei.gonglei, 2014/03/26
- [Qemu-devel] [PATCH v4 6/8] XBZRLE: rebuild the cache_is_cached function, arei.gonglei, 2014/03/26
- [Qemu-devel] [PATCH v4 3/8] migration: expose the bitmap_sync_count to the end user, arei.gonglei, 2014/03/26
- [Qemu-devel] [PATCH v4 1/8] XBZRLE: Fix one XBZRLE corruption issues, arei.gonglei, 2014/03/26