[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 01/10] migration: stop compressing page in migrat
From: |
guangrong . xiao |
Subject: |
[Qemu-devel] [PATCH v3 01/10] migration: stop compressing page in migration thread |
Date: |
Fri, 30 Mar 2018 15:51:19 +0800 |
From: Xiao Guangrong <address@hidden>
As compression is a heavy work, do not do it in migration thread,
instead, we post it out as a normal page
Reviewed-by: Wei Wang <address@hidden>
Reviewed-by: Peter Xu <address@hidden>
Reviewed-by: Dr. David Alan Gilbert <address@hidden>
Signed-off-by: Xiao Guangrong <address@hidden>
---
migration/ram.c | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/migration/ram.c b/migration/ram.c
index 0e90efa092..409c847a76 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -1137,7 +1137,7 @@ static int ram_save_compressed_page(RAMState *rs,
PageSearchStatus *pss,
int pages = -1;
uint64_t bytes_xmit = 0;
uint8_t *p;
- int ret, blen;
+ int ret;
RAMBlock *block = pss->block;
ram_addr_t offset = pss->page << TARGET_PAGE_BITS;
@@ -1167,23 +1167,23 @@ static int ram_save_compressed_page(RAMState *rs,
PageSearchStatus *pss,
if (block != rs->last_sent_block) {
flush_compressed_data(rs);
pages = save_zero_page(rs, block, offset);
- if (pages == -1) {
- /* Make sure the first page is sent out before other pages */
- bytes_xmit = save_page_header(rs, rs->f, block, offset |
- RAM_SAVE_FLAG_COMPRESS_PAGE);
- blen = qemu_put_compression_data(rs->f, p, TARGET_PAGE_SIZE,
- migrate_compress_level());
- if (blen > 0) {
- ram_counters.transferred += bytes_xmit + blen;
- ram_counters.normal++;
- pages = 1;
- } else {
- qemu_file_set_error(rs->f, blen);
- error_report("compressed data failed!");
- }
- }
if (pages > 0) {
ram_release_pages(block->idstr, offset, pages);
+ } else {
+ /*
+ * Make sure the first page is sent out before other pages.
+ *
+ * we post it as normal page as compression will take much
+ * CPU resource.
+ */
+ ram_counters.transferred += save_page_header(rs, rs->f, block,
+ offset | RAM_SAVE_FLAG_PAGE);
+ qemu_put_buffer_async(rs->f, p, TARGET_PAGE_SIZE,
+ migrate_release_ram() &
+ migration_in_postcopy());
+ ram_counters.transferred += TARGET_PAGE_SIZE;
+ ram_counters.normal++;
+ pages = 1;
}
} else {
pages = save_zero_page(rs, block, offset);
--
2.14.3
- [Qemu-devel] [PATCH v3 00/10] migration: improve and cleanup compression, guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 01/10] migration: stop compressing page in migration thread,
guangrong . xiao <=
- [Qemu-devel] [PATCH v3 02/10] migration: stop compression to allocate and free memory frequently, guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 03/10] migration: stop decompression to allocate and free memory frequently, guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 04/10] migration: detect compression and decompression errors, guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 05/10] migration: introduce control_save_page(), guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 06/10] migration: move some code to ram_save_host_page, guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 07/10] migration: move calling control_save_page to the common place, guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 08/10] migration: move calling save_zero_page to the common place, guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 09/10] migration: introduce save_normal_page(), guangrong . xiao, 2018/03/30
- [Qemu-devel] [PATCH v3 10/10] migration: remove ram_save_compressed_page(), guangrong . xiao, 2018/03/30
- Re: [Qemu-devel] [PATCH v3 00/10] migration: improve and cleanup compression, no-reply, 2018/03/31