mirror of
https://github.com/qemu/qemu.git
synced 2024-11-23 19:03:38 +08:00
migration/multifd: Drop pages->num check in sender thread
Now with a split SYNC handler, we always have pages->num set for pending_job==true. Assert it instead. Reviewed-by: Fabiano Rosas <farosas@suse.de> Link: https://lore.kernel.org/r/20240202102857.110210-9-peterx@redhat.com Signed-off-by: Peter Xu <peterx@redhat.com>
This commit is contained in:
parent
e3cce9af10
commit
83c560fb42
@ -710,13 +710,14 @@ static void *multifd_send_thread(void *opaque)
|
||||
p->iovs_num = 1;
|
||||
}
|
||||
|
||||
if (pages->num) {
|
||||
ret = multifd_send_state->ops->send_prepare(p, &local_err);
|
||||
if (ret != 0) {
|
||||
qemu_mutex_unlock(&p->mutex);
|
||||
break;
|
||||
}
|
||||
assert(pages->num);
|
||||
|
||||
ret = multifd_send_state->ops->send_prepare(p, &local_err);
|
||||
if (ret != 0) {
|
||||
qemu_mutex_unlock(&p->mutex);
|
||||
break;
|
||||
}
|
||||
|
||||
multifd_send_fill_packet(p);
|
||||
p->num_packets++;
|
||||
p->total_normal_pages += pages->num;
|
||||
|
Loading…
Reference in New Issue
Block a user