|
|
26ba25 |
From c3f7e63561bbede9c3b6278a5fd5e262ce960f4c Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
|
26ba25 |
Date: Wed, 1 Aug 2018 13:55:16 +0100
|
|
|
26ba25 |
Subject: [PATCH 12/21] migration: fix saving normal page even if it's been
|
|
|
26ba25 |
compressed
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
26ba25 |
Message-id: <20180801135522.11658-13-dgilbert@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 81568
|
|
|
26ba25 |
O-Subject: [qemu-kvm RHEL8/virt212 PATCH 12/18] migration: fix saving normal page even if it's been compressed
|
|
|
26ba25 |
Bugzilla: 1594384
|
|
|
26ba25 |
RH-Acked-by: Peter Xu <peterx@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Juan Quintela <quintela@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
From: Xiao Guangrong <xiaoguangrong@tencent.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
Fix the bug introduced by da3f56cb2e767016 (migration: remove
|
|
|
26ba25 |
ram_save_compressed_page()), It should be 'return' rather than
|
|
|
26ba25 |
'res'
|
|
|
26ba25 |
|
|
|
26ba25 |
Sorry for this stupid mistake :(
|
|
|
26ba25 |
|
|
|
26ba25 |
Signed-off-by: Xiao Guangrong <xiaoguangrong@tencent.com>
|
|
|
26ba25 |
Message-Id: <20180428081045.8878-1-xiaoguangrong@tencent.com>
|
|
|
26ba25 |
Signed-off-by: Juan Quintela <quintela@redhat.com>
|
|
|
26ba25 |
(cherry picked from commit 701b1876c0fc0c583e4aff300ace5d33a1b97ed6)
|
|
|
26ba25 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
migration/ram.c | 2 +-
|
|
|
26ba25 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/migration/ram.c b/migration/ram.c
|
|
|
26ba25 |
index 466609f..c982201 100644
|
|
|
26ba25 |
--- a/migration/ram.c
|
|
|
26ba25 |
+++ b/migration/ram.c
|
|
|
26ba25 |
@@ -1491,7 +1491,7 @@ static int ram_save_target_page(RAMState *rs, PageSearchStatus *pss,
|
|
|
26ba25 |
* CPU resource.
|
|
|
26ba25 |
*/
|
|
|
26ba25 |
if (block == rs->last_sent_block && save_page_use_compression(rs)) {
|
|
|
26ba25 |
- res = compress_page_with_multi_thread(rs, block, offset);
|
|
|
26ba25 |
+ return compress_page_with_multi_thread(rs, block, offset);
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
return ram_save_page(rs, pss, last_stage);
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|