diff options
| author | Juan Quintela <quintela@redhat.com> | 2023-10-19 13:07:19 +0200 |
|---|---|---|
| committer | Juan Quintela <quintela@redhat.com> | 2023-10-30 17:41:55 +0100 |
| commit | 250b1d7ef62b26fde8dc0f8dacad406807d82f1a (patch) | |
| tree | 74e139f1a228bc483260f5c34e46c33677bb9a94 /migration/ram-compress.c | |
| parent | b6e19b6de82987606b0cfe5c120dc1952ec582a5 (diff) | |
| download | focaccia-qemu-250b1d7ef62b26fde8dc0f8dacad406807d82f1a.tar.gz focaccia-qemu-250b1d7ef62b26fde8dc0f8dacad406807d82f1a.zip | |
migration: Move busy++ to migrate_with_multithread
And now we can simplify save_compress_page(). Reviewed-by: Lukas Straub <lukasstraub2@web.de> Reviewed-by: Fabiano Rosas <farosas@suse.de> Signed-off-by: Juan Quintela <quintela@redhat.com> Message-ID: <20231019110724.15324-7-quintela@redhat.com>
Diffstat (limited to 'migration/ram-compress.c')
| -rw-r--r-- | migration/ram-compress.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migration/ram-compress.c b/migration/ram-compress.c index a991b15b7a..f56e1f8e69 100644 --- a/migration/ram-compress.c +++ b/migration/ram-compress.c @@ -291,6 +291,7 @@ bool compress_page_with_multi_thread(RAMBlock *block, ram_addr_t offset, } if (!wait) { qemu_mutex_unlock(&comp_done_lock); + compression_counters.busy++; return false; } /* |