Blame SOURCES/kvm-migration-remove-ram_save_compressed_page.patch

1bdc94
From 5c9d6d50076df3032b1d09196e36c33004eb52fb Mon Sep 17 00:00:00 2001
1bdc94
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
1bdc94
Date: Fri, 22 Jun 2018 18:59:57 +0200
1bdc94
Subject: [PATCH 18/57] migration: remove ram_save_compressed_page()
1bdc94
1bdc94
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
1bdc94
Message-id: <20180622190005.21297-11-dgilbert@redhat.com>
1bdc94
Patchwork-id: 81011
1bdc94
O-Subject: [RHEL7.6 qemu-kvm-rhev PATCH 10/18] migration: remove ram_save_compressed_page()
1bdc94
Bugzilla: 1584139
1bdc94
RH-Acked-by: Juan Quintela <quintela@redhat.com>
1bdc94
RH-Acked-by: Peter Xu <peterx@redhat.com>
1bdc94
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
1bdc94
1bdc94
From: Xiao Guangrong <xiaoguangrong@tencent.com>
1bdc94
1bdc94
Now, we can reuse the path in ram_save_page() to post the page out
1bdc94
as normal, then the only thing remained in ram_save_compressed_page()
1bdc94
is compression that we can move it out to the caller
1bdc94
1bdc94
Reviewed-by: Peter Xu <peterx@redhat.com>
1bdc94
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1bdc94
Signed-off-by: Xiao Guangrong <xiaoguangrong@tencent.com>
1bdc94
Message-Id: <20180330075128.26919-11-xiaoguangrong@tencent.com>
1bdc94
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
1bdc94
(cherry picked from commit da3f56cb2e767016d3f204837a77caf35b463f90)
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 migration/ram.c | 45 ++++++++-------------------------------------
1bdc94
 1 file changed, 8 insertions(+), 37 deletions(-)
1bdc94
1bdc94
diff --git a/migration/ram.c b/migration/ram.c
1bdc94
index 908879f..466609f 100644
1bdc94
--- a/migration/ram.c
1bdc94
+++ b/migration/ram.c
1bdc94
@@ -1186,41 +1186,6 @@ static int compress_page_with_multi_thread(RAMState *rs, RAMBlock *block,
1bdc94
 }
1bdc94
 
1bdc94
 /**
1bdc94
- * ram_save_compressed_page: compress the given page and send it to the stream
1bdc94
- *
1bdc94
- * Returns the number of pages written.
1bdc94
- *
1bdc94
- * @rs: current RAM state
1bdc94
- * @block: block that contains the page we want to send
1bdc94
- * @offset: offset inside the block for the page
1bdc94
- * @last_stage: if we are at the completion stage
1bdc94
- */
1bdc94
-static int ram_save_compressed_page(RAMState *rs, PageSearchStatus *pss,
1bdc94
-                                    bool last_stage)
1bdc94
-{
1bdc94
-    int pages = -1;
1bdc94
-    uint8_t *p;
1bdc94
-    RAMBlock *block = pss->block;
1bdc94
-    ram_addr_t offset = pss->page << TARGET_PAGE_BITS;
1bdc94
-
1bdc94
-    p = block->host + offset;
1bdc94
-
1bdc94
-    if (block != rs->last_sent_block) {
1bdc94
-        /*
1bdc94
-         * Make sure the first page is sent out before other pages.
1bdc94
-         *
1bdc94
-         * we post it as normal page as compression will take much
1bdc94
-         * CPU resource.
1bdc94
-         */
1bdc94
-        pages = save_normal_page(rs, block, offset, p, true);
1bdc94
-    } else {
1bdc94
-        pages = compress_page_with_multi_thread(rs, block, offset);
1bdc94
-    }
1bdc94
-
1bdc94
-    return pages;
1bdc94
-}
1bdc94
-
1bdc94
-/**
1bdc94
  * find_dirty_block: find the next dirty page and update any state
1bdc94
  * associated with the search process.
1bdc94
  *
1bdc94
@@ -1519,8 +1484,14 @@ static int ram_save_target_page(RAMState *rs, PageSearchStatus *pss,
1bdc94
         return res;
1bdc94
     }
1bdc94
 
1bdc94
-    if (save_page_use_compression(rs)) {
1bdc94
-        return ram_save_compressed_page(rs, pss, last_stage);
1bdc94
+    /*
1bdc94
+     * Make sure the first page is sent out before other pages.
1bdc94
+     *
1bdc94
+     * we post it as normal page as compression will take much
1bdc94
+     * CPU resource.
1bdc94
+     */
1bdc94
+    if (block == rs->last_sent_block && save_page_use_compression(rs)) {
1bdc94
+        res = compress_page_with_multi_thread(rs, block, offset);
1bdc94
     }
1bdc94
 
1bdc94
     return ram_save_page(rs, pss, last_stage);
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94