|
|
357786 |
From 5233d49067a64ecb2c6ab2c91f4345a254f832f2 Mon Sep 17 00:00:00 2001
|
|
|
357786 |
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
|
357786 |
Date: Fri, 22 Jun 2018 18:59:54 +0200
|
|
|
357786 |
Subject: [PATCH 15/57] migration: move calling control_save_page to the common
|
|
|
357786 |
place
|
|
|
357786 |
|
|
|
357786 |
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
357786 |
Message-id: <20180622190005.21297-8-dgilbert@redhat.com>
|
|
|
357786 |
Patchwork-id: 81000
|
|
|
357786 |
O-Subject: [RHEL7.6 qemu-kvm-rhev PATCH 07/18] migration: move calling control_save_page to the common place
|
|
|
357786 |
Bugzilla: 1584139
|
|
|
357786 |
RH-Acked-by: Peter Xu <peterx@redhat.com>
|
|
|
357786 |
RH-Acked-by: Juan Quintela <quintela@redhat.com>
|
|
|
357786 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
357786 |
|
|
|
357786 |
From: Xiao Guangrong <xiaoguangrong@tencent.com>
|
|
|
357786 |
|
|
|
357786 |
The function is called by both ram_save_page and ram_save_target_page,
|
|
|
357786 |
so move it to the common caller to cleanup the code
|
|
|
357786 |
|
|
|
357786 |
Reviewed-by: Peter Xu <peterx@redhat.com>
|
|
|
357786 |
Signed-off-by: Xiao Guangrong <xiaoguangrong@tencent.com>
|
|
|
357786 |
Message-Id: <20180330075128.26919-8-xiaoguangrong@tencent.com>
|
|
|
357786 |
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
357786 |
(cherry picked from commit a8ec91f941c5f83123796331c09333d3557eb5fc)
|
|
|
357786 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
357786 |
---
|
|
|
357786 |
migration/ram.c | 16 ++++++++--------
|
|
|
357786 |
1 file changed, 8 insertions(+), 8 deletions(-)
|
|
|
357786 |
|
|
|
357786 |
diff --git a/migration/ram.c b/migration/ram.c
|
|
|
357786 |
index 106fcf1..9d6c41c 100644
|
|
|
357786 |
--- a/migration/ram.c
|
|
|
357786 |
+++ b/migration/ram.c
|
|
|
357786 |
@@ -1038,10 +1038,6 @@ static int ram_save_page(RAMState *rs, PageSearchStatus *pss, bool last_stage)
|
|
|
357786 |
p = block->host + offset;
|
|
|
357786 |
trace_ram_save_page(block->idstr, (uint64_t)offset, p);
|
|
|
357786 |
|
|
|
357786 |
- if (control_save_page(rs, block, offset, &pages)) {
|
|
|
357786 |
- return pages;
|
|
|
357786 |
- }
|
|
|
357786 |
-
|
|
|
357786 |
XBZRLE_cache_lock();
|
|
|
357786 |
pages = save_zero_page(rs, block, offset);
|
|
|
357786 |
if (pages > 0) {
|
|
|
357786 |
@@ -1199,10 +1195,6 @@ static int ram_save_compressed_page(RAMState *rs, PageSearchStatus *pss,
|
|
|
357786 |
|
|
|
357786 |
p = block->host + offset;
|
|
|
357786 |
|
|
|
357786 |
- if (control_save_page(rs, block, offset, &pages)) {
|
|
|
357786 |
- return pages;
|
|
|
357786 |
- }
|
|
|
357786 |
-
|
|
|
357786 |
/* When starting the process of a new block, the first page of
|
|
|
357786 |
* the block should be sent out before other pages in the same
|
|
|
357786 |
* block, and all the pages in last block should have been sent
|
|
|
357786 |
@@ -1490,6 +1482,14 @@ err:
|
|
|
357786 |
static int ram_save_target_page(RAMState *rs, PageSearchStatus *pss,
|
|
|
357786 |
bool last_stage)
|
|
|
357786 |
{
|
|
|
357786 |
+ RAMBlock *block = pss->block;
|
|
|
357786 |
+ ram_addr_t offset = pss->page << TARGET_PAGE_BITS;
|
|
|
357786 |
+ int res;
|
|
|
357786 |
+
|
|
|
357786 |
+ if (control_save_page(rs, block, offset, &res)) {
|
|
|
357786 |
+ return res;
|
|
|
357786 |
+ }
|
|
|
357786 |
+
|
|
|
357786 |
/*
|
|
|
357786 |
* If xbzrle is on, stop using the data compression after first
|
|
|
357786 |
* round of migration even if compression is enabled. In theory,
|
|
|
357786 |
--
|
|
|
357786 |
1.8.3.1
|
|
|
357786 |
|