]> git.proxmox.com Git - mirror_qemu.git/blobdiff - migration/ram.c
migration/postcopy: reduce memset when it is zero page and matches_target_page_size
[mirror_qemu.git] / migration / ram.c
index 5cd066467cad9273f54786f4fe692ceb53b274a6..bdb0316892739b59dac50da174feed96da60ff5f 100644 (file)
@@ -4126,7 +4126,13 @@ static int ram_load_postcopy(QEMUFile *f)
         switch (flags & ~RAM_SAVE_FLAG_CONTINUE) {
         case RAM_SAVE_FLAG_ZERO:
             ch = qemu_get_byte(f);
-            memset(page_buffer, ch, TARGET_PAGE_SIZE);
+            /*
+             * Can skip to set page_buffer when
+             * this is a zero page and (block->page_size == TARGET_PAGE_SIZE).
+             */
+            if (ch || !matches_target_page_size) {
+                memset(page_buffer, ch, TARGET_PAGE_SIZE);
+            }
             if (ch) {
                 all_zero = false;
             }