[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 10/14] block-migration: actually disable dirty track
From: |
Kevin Wolf |
Subject: |
[Qemu-devel] [PATCH 10/14] block-migration: actually disable dirty tracking on cleanup |
Date: |
Mon, 7 Feb 2011 13:40:26 +0100 |
From: Marcelo Tosatti <address@hidden>
Call to set_dirty_tracking() is misplaced.
Signed-off-by: Marcelo Tosatti <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
block-migration.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/block-migration.c b/block-migration.c
index c9d3e81..483ca7b 100644
--- a/block-migration.c
+++ b/block-migration.c
@@ -533,6 +533,8 @@ static void blk_mig_cleanup(Monitor *mon)
BlkMigDevState *bmds;
BlkMigBlock *blk;
+ set_dirty_tracking(0);
+
while ((bmds = QSIMPLEQ_FIRST(&block_mig_state.bmds_list)) != NULL) {
QSIMPLEQ_REMOVE_HEAD(&block_mig_state.bmds_list, entry);
qemu_free(bmds->aio_bitmap);
@@ -545,8 +547,6 @@ static void blk_mig_cleanup(Monitor *mon)
qemu_free(blk);
}
- set_dirty_tracking(0);
-
monitor_printf(mon, "\n");
}
--
1.7.2.3
- [Qemu-devel] [PULL 00/14] Block patches for master, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 01/14] qcow2: Really use cache=unsafe for image creation, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 02/14] Documentation: add Sheepdog disk images, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 03/14] block/vdi: Fix wrong size in conditionally used memset, memcmp, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 05/14] ahci: add license header in ahci.h, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 07/14] ahci: send init d2h fis on fis enable, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 04/14] ahci: split ICH9 from core, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 06/14] ahci: split ICH and AHCI even more, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 08/14] ahci: Implement HBA reset, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 09/14] ahci: make number of ports runtime determined, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 10/14] block-migration: actually disable dirty tracking on cleanup,
Kevin Wolf <=
- [Qemu-devel] [PATCH 11/14] blockdev: add refcount to DriveInfo, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 13/14] Add flag to indicate external users to block device, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 12/14] block-migration: add reference to target DriveInfo, Kevin Wolf, 2011/02/07
- [Qemu-devel] [PATCH 14/14] block: enable in_use flag, Kevin Wolf, 2011/02/07
- [Qemu-devel] Re: [PULL 00/14] Block patches for master, Anthony Liguori, 2011/02/07