Blame SOURCES/kvm-migration-fix-saving-normal-page-even-if-it-s-been-c.patch

383d26
From 156eb2b86b1383e639106650be32ca7d1a004f09 Mon Sep 17 00:00:00 2001
383d26
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
383d26
Date: Fri, 22 Jun 2018 18:59:59 +0200
383d26
Subject: [PATCH 20/57] migration: fix saving normal page even if it's been
383d26
 compressed
383d26
383d26
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
383d26
Message-id: <20180622190005.21297-13-dgilbert@redhat.com>
383d26
Patchwork-id: 80997
383d26
O-Subject: [RHEL7.6 qemu-kvm-rhev PATCH 12/18] migration: fix saving normal page even if it's been compressed
383d26
Bugzilla: 1584139
383d26
RH-Acked-by: Juan Quintela <quintela@redhat.com>
383d26
RH-Acked-by: Peter Xu <peterx@redhat.com>
383d26
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
383d26
383d26
From: Xiao Guangrong <xiaoguangrong@tencent.com>
383d26
383d26
Fix the bug introduced by da3f56cb2e767016 (migration: remove
383d26
ram_save_compressed_page()), It should be 'return' rather than
383d26
'res'
383d26
383d26
Sorry for this stupid mistake :(
383d26
383d26
Signed-off-by: Xiao Guangrong <xiaoguangrong@tencent.com>
383d26
Message-Id: <20180428081045.8878-1-xiaoguangrong@tencent.com>
383d26
Signed-off-by: Juan Quintela <quintela@redhat.com>
383d26
(cherry picked from commit 701b1876c0fc0c583e4aff300ace5d33a1b97ed6)
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 migration/ram.c | 2 +-
383d26
 1 file changed, 1 insertion(+), 1 deletion(-)
383d26
383d26
diff --git a/migration/ram.c b/migration/ram.c
383d26
index 466609f..c982201 100644
383d26
--- a/migration/ram.c
383d26
+++ b/migration/ram.c
383d26
@@ -1491,7 +1491,7 @@ static int ram_save_target_page(RAMState *rs, PageSearchStatus *pss,
383d26
      * CPU resource.
383d26
      */
383d26
     if (block == rs->last_sent_block && save_page_use_compression(rs)) {
383d26
-        res = compress_page_with_multi_thread(rs, block, offset);
383d26
+        return compress_page_with_multi_thread(rs, block, offset);
383d26
     }
383d26
 
383d26
     return ram_save_page(rs, pss, last_stage);
383d26
-- 
383d26
1.8.3.1
383d26