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>
This commit is contained in:
Juan Quintela 2023-10-19 13:07:18 +02:00
parent 83df387df7
commit b6e19b6de8

View File

@ -271,7 +271,8 @@ bool compress_page_with_multi_thread(RAMBlock *block, ram_addr_t offset,
thread_count = migrate_compress_threads();
qemu_mutex_lock(&comp_done_lock);
retry:
while (true) {
for (int i = 0; i < thread_count; i++) {
if (comp_param[i].done) {
CompressParam *param = &comp_param[i];
@ -288,18 +289,17 @@ retry:
return true;
}
}
/*
* 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) {
qemu_cond_wait(&comp_done_cond, &comp_done_lock);
goto retry;
}
if (!wait) {
qemu_mutex_unlock(&comp_done_lock);
return false;
}
/*
* 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);
}
}
/* return the size after decompression, or negative value on error */