[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 3/6] migration/block: Avoid invoking blk_drain too fr
From: |
Juan Quintela |
Subject: |
[Qemu-devel] [PULL 3/6] migration/block: Avoid invoking blk_drain too frequently |
Date: |
Thu, 16 Mar 2017 10:01:38 +0100 |
From: Lidong Chen <address@hidden>
Increase bmds->cur_dirty after submit io, so reduce the frequency
involve into blk_drain, and improve the performance obviously
when block migration.
The performance test result of this patch:
During the block dirty save phase, this patch improve guest os IOPS
from 4.0K to 9.5K. and improve the migration speed from
505856 rsec/s to 855756 rsec/s.
Signed-off-by: Lidong Chen <address@hidden>
Reviewed-by: Fam Zheng <address@hidden>
Signed-off-by: Juan Quintela <address@hidden>
---
migration/block.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/migration/block.c b/migration/block.c
index 6741228..7734ff7 100644
--- a/migration/block.c
+++ b/migration/block.c
@@ -576,6 +576,9 @@ static int mig_save_device_dirty(QEMUFile *f,
BlkMigDevState *bmds,
}
bdrv_reset_dirty_bitmap(bmds->dirty_bitmap, sector, nr_sectors);
+ sector += nr_sectors;
+ bmds->cur_dirty = sector;
+
break;
}
sector += BDRV_SECTORS_PER_DIRTY_CHUNK;
--
2.9.3
- [Qemu-devel] [PULL 0/6] Migration fixes, Juan Quintela, 2017/03/16
- [Qemu-devel] [PULL 1/6] Change the method to calculate dirty-pages-rate, Juan Quintela, 2017/03/16
- [Qemu-devel] [PULL 4/6] vmstate: fix failed iotests case 68 and 91, Juan Quintela, 2017/03/16
- [Qemu-devel] [PULL 5/6] RAMBlocks: qemu_ram_is_shared, Juan Quintela, 2017/03/16
- [Qemu-devel] [PULL 3/6] migration/block: Avoid invoking blk_drain too frequently,
Juan Quintela <=
- [Qemu-devel] [PULL 2/6] migration: use "" as the default for tls-creds/hostname, Juan Quintela, 2017/03/16
- [Qemu-devel] [PULL 6/6] postcopy: Check for shared memory, Juan Quintela, 2017/03/16
- Re: [Qemu-devel] [PULL 0/6] Migration fixes, Peter Maydell, 2017/03/16