aboutsummaryrefslogtreecommitdiff
path: root/migration
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2023-10-19 13:07:18 +0200
committerJuan Quintela <quintela@redhat.com>2023-10-30 17:41:55 +0100
commitb6e19b6de82987606b0cfe5c120dc1952ec582a5 (patch)
tree45d0a0e8bcd9afbc0fe33ae9a8b778a9b5f13fc4 /migration
parent83df387df7fbd4fb76f3beae56f925dead5bba5a (diff)
migration: Simplify compress_page_with_multithread()
Move the goto to a while true. 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-6-quintela@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r--migration/ram-compress.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/migration/ram-compress.c b/migration/ram-compress.c
index ef03d60a6d..a991b15b7a 100644
--- a/migration/ram-compress.c
+++ b/migration/ram-compress.c
@@ -271,35 +271,35 @@ bool compress_page_with_multi_thread(RAMBlock *block, ram_addr_t offset,
thread_count = migrate_compress_threads();
qemu_mutex_lock(&comp_done_lock);
-retry:
- for (int i = 0; i < thread_count; i++) {
- if (comp_param[i].done) {
- CompressParam *param = &comp_param[i];
- qemu_mutex_lock(&param->mutex);
- param->done = false;
- send_queued_data(param);
- assert(qemu_file_buffer_empty(param->file));
- compress_reset_result(param);
- set_compress_params(param, block, offset);
- qemu_cond_signal(&param->cond);
- qemu_mutex_unlock(&param->mutex);
+ while (true) {
+ for (int i = 0; i < thread_count; i++) {
+ if (comp_param[i].done) {
+ CompressParam *param = &comp_param[i];
+ qemu_mutex_lock(&param->mutex);
+ param->done = false;
+ send_queued_data(param);
+ assert(qemu_file_buffer_empty(param->file));
+ compress_reset_result(param);
+ set_compress_params(param, block, offset);
+
+ qemu_cond_signal(&param->cond);
+ qemu_mutex_unlock(&param->mutex);
+ qemu_mutex_unlock(&comp_done_lock);
+ return true;
+ }
+ }
+ if (!wait) {
qemu_mutex_unlock(&comp_done_lock);
- return true;
+ return false;
}
- }
-
- /*
- * wait for the free thread if the user specifies 'compress-wait-thread',
- * otherwise we will post the page out in the main thread as normal page.
- */
- if (wait) {
+ /*
+ * wait for a free thread if the user specifies
+ * 'compress-wait-thread', otherwise we will post the page out
+ * in the main thread as normal page.
+ */
qemu_cond_wait(&comp_done_cond, &comp_done_lock);
- goto retry;
}
- qemu_mutex_unlock(&comp_done_lock);
-
- return false;
}
/* return the size after decompression, or negative value on error */