]> git.proxmox.com Git - mirror_qemu.git/blame - migration/multifd.c
qemu-options: Clarify handling of commas in options parameters
[mirror_qemu.git] / migration / multifd.c
CommitLineData
d32ca5ad
JQ
1/*
2 * Multifd common code
3 *
4 * Copyright (c) 2019-2020 Red Hat Inc
5 *
6 * Authors:
7 * Juan Quintela <quintela@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 */
12
13#include "qemu/osdep.h"
14#include "qemu/rcu.h"
15#include "exec/target_page.h"
16#include "sysemu/sysemu.h"
17#include "exec/ramblock.h"
18#include "qemu/error-report.h"
19#include "qapi/error.h"
20#include "ram.h"
21#include "migration.h"
947701cc 22#include "migration-stats.h"
d32ca5ad 23#include "socket.h"
29647140 24#include "tls.h"
d32ca5ad
JQ
25#include "qemu-file.h"
26#include "trace.h"
27#include "multifd.h"
1b1f4ab6 28#include "threadinfo.h"
b4bc342c 29#include "options.h"
b5eea99e
LS
30#include "qemu/yank.h"
31#include "io/channel-socket.h"
1a92d6d5 32#include "yank_functions.h"
b5eea99e 33
d32ca5ad
JQ
34/* Multiple fd's */
35
36#define MULTIFD_MAGIC 0x11223344U
37#define MULTIFD_VERSION 1
38
39typedef struct {
40 uint32_t magic;
41 uint32_t version;
42 unsigned char uuid[16]; /* QemuUUID */
43 uint8_t id;
44 uint8_t unused1[7]; /* Reserved for future use */
45 uint64_t unused2[4]; /* Reserved for future use */
46} __attribute__((packed)) MultiFDInit_t;
47
ab7cbb0b
JQ
48/* Multifd without compression */
49
50/**
51 * nocomp_send_setup: setup send side
52 *
53 * For no compression this function does nothing.
54 *
55 * Returns 0 for success or -1 for error
56 *
57 * @p: Params for the channel that we are using
58 * @errp: pointer to an error
59 */
60static int nocomp_send_setup(MultiFDSendParams *p, Error **errp)
61{
62 return 0;
63}
64
65/**
66 * nocomp_send_cleanup: cleanup send side
67 *
68 * For no compression this function does nothing.
69 *
70 * @p: Params for the channel that we are using
18ede636 71 * @errp: pointer to an error
ab7cbb0b
JQ
72 */
73static void nocomp_send_cleanup(MultiFDSendParams *p, Error **errp)
74{
75 return;
76}
77
78/**
79 * nocomp_send_prepare: prepare date to be able to send
80 *
81 * For no compression we just have to calculate the size of the
82 * packet.
83 *
84 * Returns 0 for success or -1 for error
85 *
86 * @p: Params for the channel that we are using
ab7cbb0b
JQ
87 * @errp: pointer to an error
88 */
02fb8104 89static int nocomp_send_prepare(MultiFDSendParams *p, Error **errp)
ab7cbb0b 90{
226468ba 91 MultiFDPages_t *pages = p->pages;
226468ba 92
815956f0
JQ
93 for (int i = 0; i < p->normal_num; i++) {
94 p->iov[p->iovs_num].iov_base = pages->block->host + p->normal[i];
ddec20f8 95 p->iov[p->iovs_num].iov_len = p->page_size;
226468ba
JQ
96 p->iovs_num++;
97 }
98
ddec20f8 99 p->next_packet_size = p->normal_num * p->page_size;
ab7cbb0b
JQ
100 p->flags |= MULTIFD_FLAG_NOCOMP;
101 return 0;
102}
103
ab7cbb0b
JQ
104/**
105 * nocomp_recv_setup: setup receive side
106 *
107 * For no compression this function does nothing.
108 *
109 * Returns 0 for success or -1 for error
110 *
111 * @p: Params for the channel that we are using
112 * @errp: pointer to an error
113 */
114static int nocomp_recv_setup(MultiFDRecvParams *p, Error **errp)
115{
116 return 0;
117}
118
119/**
120 * nocomp_recv_cleanup: setup receive side
121 *
122 * For no compression this function does nothing.
123 *
124 * @p: Params for the channel that we are using
125 */
126static void nocomp_recv_cleanup(MultiFDRecvParams *p)
127{
128}
129
130/**
131 * nocomp_recv_pages: read the data from the channel into actual pages
132 *
133 * For no compression we just need to read things into the correct place.
134 *
135 * Returns 0 for success or -1 for error
136 *
137 * @p: Params for the channel that we are using
ab7cbb0b
JQ
138 * @errp: pointer to an error
139 */
40a4bfe9 140static int nocomp_recv_pages(MultiFDRecvParams *p, Error **errp)
ab7cbb0b
JQ
141{
142 uint32_t flags = p->flags & MULTIFD_FLAG_COMPRESSION_MASK;
143
144 if (flags != MULTIFD_FLAG_NOCOMP) {
04e11404 145 error_setg(errp, "multifd %u: flags received %x flags expected %x",
ab7cbb0b
JQ
146 p->id, flags, MULTIFD_FLAG_NOCOMP);
147 return -1;
148 }
cf2d4aa8 149 for (int i = 0; i < p->normal_num; i++) {
faf60935 150 p->iov[i].iov_base = p->host + p->normal[i];
ddec20f8 151 p->iov[i].iov_len = p->page_size;
226468ba 152 }
cf2d4aa8 153 return qio_channel_readv_all(p->c, p->iov, p->normal_num, errp);
ab7cbb0b
JQ
154}
155
156static MultiFDMethods multifd_nocomp_ops = {
157 .send_setup = nocomp_send_setup,
158 .send_cleanup = nocomp_send_cleanup,
159 .send_prepare = nocomp_send_prepare,
ab7cbb0b
JQ
160 .recv_setup = nocomp_recv_setup,
161 .recv_cleanup = nocomp_recv_cleanup,
162 .recv_pages = nocomp_recv_pages
163};
164
165static MultiFDMethods *multifd_ops[MULTIFD_COMPRESSION__MAX] = {
166 [MULTIFD_COMPRESSION_NONE] = &multifd_nocomp_ops,
167};
168
7ec2c2b3
JQ
169void multifd_register_ops(int method, MultiFDMethods *ops)
170{
171 assert(0 < method && method < MULTIFD_COMPRESSION__MAX);
172 multifd_ops[method] = ops;
173}
174
d32ca5ad
JQ
175static int multifd_send_initial_packet(MultiFDSendParams *p, Error **errp)
176{
177 MultiFDInit_t msg = {};
cbec7eb7 178 size_t size = sizeof(msg);
d32ca5ad
JQ
179 int ret;
180
181 msg.magic = cpu_to_be32(MULTIFD_MAGIC);
182 msg.version = cpu_to_be32(MULTIFD_VERSION);
183 msg.id = p->id;
184 memcpy(msg.uuid, &qemu_uuid.data, sizeof(msg.uuid));
185
cbec7eb7 186 ret = qio_channel_write_all(p->c, (char *)&msg, size, errp);
d32ca5ad
JQ
187 if (ret != 0) {
188 return -1;
189 }
cbec7eb7 190 stat64_add(&mig_stats.multifd_bytes, size);
d32ca5ad
JQ
191 return 0;
192}
193
194static int multifd_recv_initial_packet(QIOChannel *c, Error **errp)
195{
196 MultiFDInit_t msg;
197 int ret;
198
199 ret = qio_channel_read_all(c, (char *)&msg, sizeof(msg), errp);
200 if (ret != 0) {
201 return -1;
202 }
203
204 msg.magic = be32_to_cpu(msg.magic);
205 msg.version = be32_to_cpu(msg.version);
206
207 if (msg.magic != MULTIFD_MAGIC) {
208 error_setg(errp, "multifd: received packet magic %x "
209 "expected %x", msg.magic, MULTIFD_MAGIC);
210 return -1;
211 }
212
213 if (msg.version != MULTIFD_VERSION) {
04e11404
JQ
214 error_setg(errp, "multifd: received packet version %u "
215 "expected %u", msg.version, MULTIFD_VERSION);
d32ca5ad
JQ
216 return -1;
217 }
218
219 if (memcmp(msg.uuid, &qemu_uuid, sizeof(qemu_uuid))) {
220 char *uuid = qemu_uuid_unparse_strdup(&qemu_uuid);
221 char *msg_uuid = qemu_uuid_unparse_strdup((const QemuUUID *)msg.uuid);
222
223 error_setg(errp, "multifd: received uuid '%s' and expected "
224 "uuid '%s' for channel %hhd", msg_uuid, uuid, msg.id);
225 g_free(uuid);
226 g_free(msg_uuid);
227 return -1;
228 }
229
230 if (msg.id > migrate_multifd_channels()) {
04e11404
JQ
231 error_setg(errp, "multifd: received channel version %u "
232 "expected %u", msg.version, MULTIFD_VERSION);
d32ca5ad
JQ
233 return -1;
234 }
235
236 return msg.id;
237}
238
239static MultiFDPages_t *multifd_pages_init(size_t size)
240{
241 MultiFDPages_t *pages = g_new0(MultiFDPages_t, 1);
242
243 pages->allocated = size;
d32ca5ad
JQ
244 pages->offset = g_new0(ram_addr_t, size);
245
246 return pages;
247}
248
249static void multifd_pages_clear(MultiFDPages_t *pages)
250{
90a3d2f9 251 pages->num = 0;
d32ca5ad
JQ
252 pages->allocated = 0;
253 pages->packet_num = 0;
254 pages->block = NULL;
d32ca5ad
JQ
255 g_free(pages->offset);
256 pages->offset = NULL;
257 g_free(pages);
258}
259
260static void multifd_send_fill_packet(MultiFDSendParams *p)
261{
262 MultiFDPacket_t *packet = p->packet;
263 int i;
264
265 packet->flags = cpu_to_be32(p->flags);
266 packet->pages_alloc = cpu_to_be32(p->pages->allocated);
8c0ec0b2 267 packet->normal_pages = cpu_to_be32(p->normal_num);
d32ca5ad
JQ
268 packet->next_packet_size = cpu_to_be32(p->next_packet_size);
269 packet->packet_num = cpu_to_be64(p->packet_num);
270
271 if (p->pages->block) {
272 strncpy(packet->ramblock, p->pages->block->idstr, 256);
273 }
274
815956f0 275 for (i = 0; i < p->normal_num; i++) {
d32ca5ad 276 /* there are architectures where ram_addr_t is 32 bit */
815956f0 277 uint64_t temp = p->normal[i];
d32ca5ad
JQ
278
279 packet->offset[i] = cpu_to_be64(temp);
280 }
281}
282
283static int multifd_recv_unfill_packet(MultiFDRecvParams *p, Error **errp)
284{
285 MultiFDPacket_t *packet = p->packet;
d32ca5ad
JQ
286 int i;
287
288 packet->magic = be32_to_cpu(packet->magic);
289 if (packet->magic != MULTIFD_MAGIC) {
290 error_setg(errp, "multifd: received packet "
291 "magic %x and expected magic %x",
292 packet->magic, MULTIFD_MAGIC);
293 return -1;
294 }
295
296 packet->version = be32_to_cpu(packet->version);
297 if (packet->version != MULTIFD_VERSION) {
298 error_setg(errp, "multifd: received packet "
04e11404 299 "version %u and expected version %u",
d32ca5ad
JQ
300 packet->version, MULTIFD_VERSION);
301 return -1;
302 }
303
304 p->flags = be32_to_cpu(packet->flags);
305
306 packet->pages_alloc = be32_to_cpu(packet->pages_alloc);
307 /*
308 * If we received a packet that is 100 times bigger than expected
309 * just stop migration. It is a magic number.
310 */
d6f45eba 311 if (packet->pages_alloc > p->page_count) {
d32ca5ad 312 error_setg(errp, "multifd: received packet "
cf2d4aa8 313 "with size %u and expected a size of %u",
d6f45eba 314 packet->pages_alloc, p->page_count) ;
d32ca5ad
JQ
315 return -1;
316 }
d32ca5ad 317
8c0ec0b2 318 p->normal_num = be32_to_cpu(packet->normal_pages);
cf2d4aa8 319 if (p->normal_num > packet->pages_alloc) {
d32ca5ad 320 error_setg(errp, "multifd: received packet "
04e11404 321 "with %u pages and expected maximum pages are %u",
cf2d4aa8 322 p->normal_num, packet->pages_alloc) ;
d32ca5ad
JQ
323 return -1;
324 }
325
326 p->next_packet_size = be32_to_cpu(packet->next_packet_size);
327 p->packet_num = be64_to_cpu(packet->packet_num);
328
cf2d4aa8 329 if (p->normal_num == 0) {
d32ca5ad
JQ
330 return 0;
331 }
332
333 /* make sure that ramblock is 0 terminated */
334 packet->ramblock[255] = 0;
5d1d1fcf
LS
335 p->block = qemu_ram_block_by_name(packet->ramblock);
336 if (!p->block) {
d32ca5ad
JQ
337 error_setg(errp, "multifd: unknown ram block %s",
338 packet->ramblock);
339 return -1;
340 }
341
5d1d1fcf 342 p->host = p->block->host;
cf2d4aa8 343 for (i = 0; i < p->normal_num; i++) {
d32ca5ad
JQ
344 uint64_t offset = be64_to_cpu(packet->offset[i]);
345
5d1d1fcf 346 if (offset > (p->block->used_length - p->page_size)) {
d32ca5ad
JQ
347 error_setg(errp, "multifd: offset too long %" PRIu64
348 " (max " RAM_ADDR_FMT ")",
5d1d1fcf 349 offset, p->block->used_length);
d32ca5ad
JQ
350 return -1;
351 }
cf2d4aa8 352 p->normal[i] = offset;
d32ca5ad
JQ
353 }
354
355 return 0;
356}
357
358struct {
359 MultiFDSendParams *params;
360 /* array of pages to sent */
361 MultiFDPages_t *pages;
362 /* global number of generated multifd packets */
363 uint64_t packet_num;
364 /* send channels ready */
365 QemuSemaphore channels_ready;
366 /*
367 * Have we already run terminate threads. There is a race when it
368 * happens that we got one error while we are exiting.
369 * We will use atomic operations. Only valid values are 0 and 1.
370 */
371 int exiting;
ab7cbb0b
JQ
372 /* multifd ops */
373 MultiFDMethods *ops;
d32ca5ad
JQ
374} *multifd_send_state;
375
376/*
377 * How we use multifd_send_state->pages and channel->pages?
378 *
379 * We create a pages for each channel, and a main one. Each time that
380 * we need to send a batch of pages we interchange the ones between
381 * multifd_send_state and the channel that is sending it. There are
382 * two reasons for that:
383 * - to not have to do so many mallocs during migration
384 * - to make easier to know what to free at the end of migration
385 *
386 * This way we always know who is the owner of each "pages" struct,
387 * and we don't need any locking. It belongs to the migration thread
388 * or to the channel thread. Switching is safe because the migration
389 * thread is using the channel mutex when changing it, and the channel
390 * have to had finish with its own, otherwise pending_job can't be
391 * false.
392 */
393
394static int multifd_send_pages(QEMUFile *f)
395{
396 int i;
397 static int next_channel;
398 MultiFDSendParams *p = NULL; /* make happy gcc */
399 MultiFDPages_t *pages = multifd_send_state->pages;
d32ca5ad 400
d73415a3 401 if (qatomic_read(&multifd_send_state->exiting)) {
d32ca5ad
JQ
402 return -1;
403 }
404
405 qemu_sem_wait(&multifd_send_state->channels_ready);
7e89a140
LV
406 /*
407 * next_channel can remain from a previous migration that was
408 * using more channels, so ensure it doesn't overflow if the
409 * limit is lower now.
410 */
411 next_channel %= migrate_multifd_channels();
d32ca5ad
JQ
412 for (i = next_channel;; i = (i + 1) % migrate_multifd_channels()) {
413 p = &multifd_send_state->params[i];
414
415 qemu_mutex_lock(&p->mutex);
416 if (p->quit) {
417 error_report("%s: channel %d has already quit!", __func__, i);
418 qemu_mutex_unlock(&p->mutex);
419 return -1;
420 }
421 if (!p->pending_job) {
422 p->pending_job++;
423 next_channel = (i + 1) % migrate_multifd_channels();
424 break;
425 }
426 qemu_mutex_unlock(&p->mutex);
427 }
90a3d2f9 428 assert(!p->pages->num);
d32ca5ad
JQ
429 assert(!p->pages->block);
430
431 p->packet_num = multifd_send_state->packet_num++;
432 multifd_send_state->pages = p->pages;
433 p->pages = pages;
d32ca5ad
JQ
434 qemu_mutex_unlock(&p->mutex);
435 qemu_sem_post(&p->sem);
436
437 return 1;
438}
439
440int multifd_queue_page(QEMUFile *f, RAMBlock *block, ram_addr_t offset)
441{
442 MultiFDPages_t *pages = multifd_send_state->pages;
ddbe628c 443 bool changed = false;
d32ca5ad
JQ
444
445 if (!pages->block) {
446 pages->block = block;
447 }
448
449 if (pages->block == block) {
90a3d2f9 450 pages->offset[pages->num] = offset;
90a3d2f9 451 pages->num++;
d32ca5ad 452
90a3d2f9 453 if (pages->num < pages->allocated) {
d32ca5ad
JQ
454 return 1;
455 }
ddbe628c
ZD
456 } else {
457 changed = true;
d32ca5ad
JQ
458 }
459
460 if (multifd_send_pages(f) < 0) {
461 return -1;
462 }
463
ddbe628c
ZD
464 if (changed) {
465 return multifd_queue_page(f, block, offset);
d32ca5ad
JQ
466 }
467
468 return 1;
469}
470
471static void multifd_send_terminate_threads(Error *err)
472{
473 int i;
474
475 trace_multifd_send_terminate_threads(err != NULL);
476
477 if (err) {
478 MigrationState *s = migrate_get_current();
479 migrate_set_error(s, err);
480 if (s->state == MIGRATION_STATUS_SETUP ||
481 s->state == MIGRATION_STATUS_PRE_SWITCHOVER ||
482 s->state == MIGRATION_STATUS_DEVICE ||
483 s->state == MIGRATION_STATUS_ACTIVE) {
484 migrate_set_state(&s->state, s->state,
485 MIGRATION_STATUS_FAILED);
486 }
487 }
488
489 /*
490 * We don't want to exit each threads twice. Depending on where
491 * we get the error, or if there are two independent errors in two
492 * threads at the same time, we can end calling this function
493 * twice.
494 */
d73415a3 495 if (qatomic_xchg(&multifd_send_state->exiting, 1)) {
d32ca5ad
JQ
496 return;
497 }
498
499 for (i = 0; i < migrate_multifd_channels(); i++) {
500 MultiFDSendParams *p = &multifd_send_state->params[i];
501
502 qemu_mutex_lock(&p->mutex);
503 p->quit = true;
504 qemu_sem_post(&p->sem);
077fbb59
LZ
505 if (p->c) {
506 qio_channel_shutdown(p->c, QIO_CHANNEL_SHUTDOWN_BOTH, NULL);
507 }
d32ca5ad
JQ
508 qemu_mutex_unlock(&p->mutex);
509 }
510}
511
0e92f644
FR
512static int multifd_send_channel_destroy(QIOChannel *send)
513{
514 return socket_send_channel_destroy(send);
515}
516
d32ca5ad
JQ
517void multifd_save_cleanup(void)
518{
519 int i;
520
51b07548 521 if (!migrate_multifd()) {
d32ca5ad
JQ
522 return;
523 }
524 multifd_send_terminate_threads(NULL);
525 for (i = 0; i < migrate_multifd_channels(); i++) {
526 MultiFDSendParams *p = &multifd_send_state->params[i];
527
528 if (p->running) {
529 qemu_thread_join(&p->thread);
530 }
531 }
532 for (i = 0; i < migrate_multifd_channels(); i++) {
533 MultiFDSendParams *p = &multifd_send_state->params[i];
ab7cbb0b 534 Error *local_err = NULL;
d32ca5ad 535
20171ea8
LS
536 if (p->registered_yank) {
537 migration_ioc_unregister_yank(p->c);
538 }
0e92f644 539 multifd_send_channel_destroy(p->c);
d32ca5ad
JQ
540 p->c = NULL;
541 qemu_mutex_destroy(&p->mutex);
542 qemu_sem_destroy(&p->sem);
543 qemu_sem_destroy(&p->sem_sync);
544 g_free(p->name);
545 p->name = NULL;
546 multifd_pages_clear(p->pages);
547 p->pages = NULL;
548 p->packet_len = 0;
549 g_free(p->packet);
550 p->packet = NULL;
226468ba
JQ
551 g_free(p->iov);
552 p->iov = NULL;
815956f0
JQ
553 g_free(p->normal);
554 p->normal = NULL;
ab7cbb0b
JQ
555 multifd_send_state->ops->send_cleanup(p, &local_err);
556 if (local_err) {
557 migrate_set_error(migrate_get_current(), local_err);
13f2cb21 558 error_free(local_err);
ab7cbb0b 559 }
d32ca5ad
JQ
560 }
561 qemu_sem_destroy(&multifd_send_state->channels_ready);
562 g_free(multifd_send_state->params);
563 multifd_send_state->params = NULL;
564 multifd_pages_clear(multifd_send_state->pages);
565 multifd_send_state->pages = NULL;
566 g_free(multifd_send_state);
567 multifd_send_state = NULL;
568}
569
4cc47b43
LB
570static int multifd_zero_copy_flush(QIOChannel *c)
571{
572 int ret;
573 Error *err = NULL;
574
575 ret = qio_channel_flush(c, &err);
576 if (ret < 0) {
577 error_report_err(err);
578 return -1;
579 }
580 if (ret == 1) {
aff3f660 581 stat64_add(&mig_stats.dirty_sync_missed_zero_copy, 1);
4cc47b43
LB
582 }
583
584 return ret;
585}
586
33d70973 587int multifd_send_sync_main(QEMUFile *f)
d32ca5ad
JQ
588{
589 int i;
5b1d9bab 590 bool flush_zero_copy;
d32ca5ad 591
51b07548 592 if (!migrate_multifd()) {
33d70973 593 return 0;
d32ca5ad 594 }
90a3d2f9 595 if (multifd_send_state->pages->num) {
d32ca5ad
JQ
596 if (multifd_send_pages(f) < 0) {
597 error_report("%s: multifd_send_pages fail", __func__);
33d70973 598 return -1;
d32ca5ad
JQ
599 }
600 }
5b1d9bab
LB
601
602 /*
603 * When using zero-copy, it's necessary to flush the pages before any of
604 * the pages can be sent again, so we'll make sure the new version of the
605 * pages will always arrive _later_ than the old pages.
606 *
607 * Currently we achieve this by flushing the zero-page requested writes
608 * per ram iteration, but in the future we could potentially optimize it
609 * to be less frequent, e.g. only after we finished one whole scanning of
610 * all the dirty bitmaps.
611 */
612
b4bc342c 613 flush_zero_copy = migrate_zero_copy_send();
5b1d9bab 614
d32ca5ad
JQ
615 for (i = 0; i < migrate_multifd_channels(); i++) {
616 MultiFDSendParams *p = &multifd_send_state->params[i];
617
618 trace_multifd_send_sync_main_signal(p->id);
619
620 qemu_mutex_lock(&p->mutex);
621
622 if (p->quit) {
623 error_report("%s: channel %d has already quit", __func__, i);
624 qemu_mutex_unlock(&p->mutex);
33d70973 625 return -1;
d32ca5ad
JQ
626 }
627
628 p->packet_num = multifd_send_state->packet_num++;
629 p->flags |= MULTIFD_FLAG_SYNC;
630 p->pending_job++;
d32ca5ad
JQ
631 qemu_mutex_unlock(&p->mutex);
632 qemu_sem_post(&p->sem);
633 }
634 for (i = 0; i < migrate_multifd_channels(); i++) {
635 MultiFDSendParams *p = &multifd_send_state->params[i];
636
d2026ee1 637 qemu_sem_wait(&multifd_send_state->channels_ready);
d32ca5ad
JQ
638 trace_multifd_send_sync_main_wait(p->id);
639 qemu_sem_wait(&p->sem_sync);
ebfc5787
ZD
640
641 if (flush_zero_copy && p->c && (multifd_zero_copy_flush(p->c) < 0)) {
642 return -1;
643 }
d32ca5ad
JQ
644 }
645 trace_multifd_send_sync_main(multifd_send_state->packet_num);
33d70973
LB
646
647 return 0;
d32ca5ad
JQ
648}
649
650static void *multifd_send_thread(void *opaque)
651{
652 MultiFDSendParams *p = opaque;
1b1f4ab6 653 MigrationThread *thread = NULL;
d32ca5ad
JQ
654 Error *local_err = NULL;
655 int ret = 0;
b4bc342c 656 bool use_zero_copy_send = migrate_zero_copy_send();
d32ca5ad 657
788fa680 658 thread = migration_threads_add(p->name, qemu_get_thread_id());
1b1f4ab6 659
d32ca5ad
JQ
660 trace_multifd_send_thread_start(p->id);
661 rcu_register_thread();
662
663 if (multifd_send_initial_packet(p, &local_err) < 0) {
664 ret = -1;
665 goto out;
666 }
667 /* initial packet */
668 p->num_packets = 1;
669
670 while (true) {
d2026ee1 671 qemu_sem_post(&multifd_send_state->channels_ready);
d32ca5ad
JQ
672 qemu_sem_wait(&p->sem);
673
d73415a3 674 if (qatomic_read(&multifd_send_state->exiting)) {
d32ca5ad
JQ
675 break;
676 }
677 qemu_mutex_lock(&p->mutex);
678
679 if (p->pending_job) {
d32ca5ad 680 uint64_t packet_num = p->packet_num;
ff1585d1 681 uint32_t flags;
815956f0
JQ
682 p->normal_num = 0;
683
b7dbdd8e
LB
684 if (use_zero_copy_send) {
685 p->iovs_num = 0;
686 } else {
687 p->iovs_num = 1;
688 }
689
815956f0
JQ
690 for (int i = 0; i < p->pages->num; i++) {
691 p->normal[p->normal_num] = p->pages->offset[i];
692 p->normal_num++;
693 }
d32ca5ad 694
815956f0 695 if (p->normal_num) {
02fb8104 696 ret = multifd_send_state->ops->send_prepare(p, &local_err);
ab7cbb0b
JQ
697 if (ret != 0) {
698 qemu_mutex_unlock(&p->mutex);
699 break;
700 }
701 }
d32ca5ad 702 multifd_send_fill_packet(p);
ff1585d1 703 flags = p->flags;
d32ca5ad
JQ
704 p->flags = 0;
705 p->num_packets++;
815956f0 706 p->total_normal_pages += p->normal_num;
90a3d2f9 707 p->pages->num = 0;
d32ca5ad
JQ
708 p->pages->block = NULL;
709 qemu_mutex_unlock(&p->mutex);
710
815956f0 711 trace_multifd_send(p->id, packet_num, p->normal_num, flags,
d32ca5ad
JQ
712 p->next_packet_size);
713
b7dbdd8e
LB
714 if (use_zero_copy_send) {
715 /* Send header first, without zerocopy */
716 ret = qio_channel_write_all(p->c, (void *)p->packet,
717 p->packet_len, &local_err);
718 if (ret != 0) {
719 break;
720 }
721 } else {
722 /* Send header using the same writev call */
723 p->iov[0].iov_len = p->packet_len;
724 p->iov[0].iov_base = p->packet;
725 }
d48c3a04 726
5b1d9bab
LB
727 ret = qio_channel_writev_full_all(p->c, p->iov, p->iovs_num, NULL,
728 0, p->write_flags, &local_err);
d32ca5ad
JQ
729 if (ret != 0) {
730 break;
731 }
732
68b6e000
EU
733 stat64_add(&mig_stats.multifd_bytes,
734 p->next_packet_size + p->packet_len);
1618f552 735 p->next_packet_size = 0;
d32ca5ad
JQ
736 qemu_mutex_lock(&p->mutex);
737 p->pending_job--;
738 qemu_mutex_unlock(&p->mutex);
739
740 if (flags & MULTIFD_FLAG_SYNC) {
741 qemu_sem_post(&p->sem_sync);
742 }
d32ca5ad
JQ
743 } else {
744 qemu_mutex_unlock(&p->mutex);
745 /* sometimes there are spurious wakeups */
746 }
747 }
748
749out:
ee8a7c9c
FR
750 if (ret) {
751 assert(local_err);
d32ca5ad
JQ
752 trace_multifd_send_error(p->id);
753 multifd_send_terminate_threads(local_err);
d32ca5ad
JQ
754 qemu_sem_post(&p->sem_sync);
755 qemu_sem_post(&multifd_send_state->channels_ready);
ee8a7c9c 756 error_free(local_err);
d32ca5ad
JQ
757 }
758
759 qemu_mutex_lock(&p->mutex);
760 p->running = false;
761 qemu_mutex_unlock(&p->mutex);
762
763 rcu_unregister_thread();
788fa680 764 migration_threads_remove(thread);
815956f0 765 trace_multifd_send_thread_end(p->id, p->num_packets, p->total_normal_pages);
d32ca5ad
JQ
766
767 return NULL;
768}
769
29647140
CZ
770static bool multifd_channel_connect(MultiFDSendParams *p,
771 QIOChannel *ioc,
967e3889 772 Error **errp);
29647140
CZ
773
774static void multifd_tls_outgoing_handshake(QIOTask *task,
775 gpointer opaque)
776{
777 MultiFDSendParams *p = opaque;
778 QIOChannel *ioc = QIO_CHANNEL(qio_task_get_source(task));
779 Error *err = NULL;
780
967e3889 781 if (!qio_task_propagate_error(task, &err)) {
894f0214 782 trace_multifd_tls_outgoing_handshake_complete(ioc);
967e3889
FR
783 if (multifd_channel_connect(p, ioc, &err)) {
784 return;
785 }
894f0214 786 }
fca67642 787
967e3889
FR
788 trace_multifd_tls_outgoing_handshake_error(ioc, error_get_pretty(err));
789
790 /*
791 * Error happen, mark multifd_send_thread status as 'quit' although it
792 * is not created, and then tell who pay attention to me.
793 */
794 p->quit = true;
795 qemu_sem_post(&multifd_send_state->channels_ready);
796 qemu_sem_post(&p->sem_sync);
29647140
CZ
797}
798
a1af605b
CZ
799static void *multifd_tls_handshake_thread(void *opaque)
800{
801 MultiFDSendParams *p = opaque;
802 QIOChannelTLS *tioc = QIO_CHANNEL_TLS(p->c);
803
804 qio_channel_tls_handshake(tioc,
805 multifd_tls_outgoing_handshake,
806 p,
807 NULL,
808 NULL);
809 return NULL;
810}
811
967e3889 812static bool multifd_tls_channel_connect(MultiFDSendParams *p,
29647140
CZ
813 QIOChannel *ioc,
814 Error **errp)
815{
816 MigrationState *s = migrate_get_current();
7f692ec7 817 const char *hostname = s->hostname;
29647140
CZ
818 QIOChannelTLS *tioc;
819
0deb7e9b 820 tioc = migration_tls_client_create(ioc, hostname, errp);
29647140 821 if (!tioc) {
967e3889 822 return false;
29647140
CZ
823 }
824
9e842408 825 object_unref(OBJECT(ioc));
894f0214 826 trace_multifd_tls_outgoing_handshake_start(ioc, tioc, hostname);
29647140 827 qio_channel_set_name(QIO_CHANNEL(tioc), "multifd-tls-outgoing");
a1af605b
CZ
828 p->c = QIO_CHANNEL(tioc);
829 qemu_thread_create(&p->thread, "multifd-tls-handshake-worker",
830 multifd_tls_handshake_thread, p,
831 QEMU_THREAD_JOINABLE);
967e3889 832 return true;
29647140
CZ
833}
834
835static bool multifd_channel_connect(MultiFDSendParams *p,
836 QIOChannel *ioc,
967e3889 837 Error **errp)
29647140 838{
894f0214 839 trace_multifd_set_outgoing_channel(
7f692ec7 840 ioc, object_get_typename(OBJECT(ioc)),
967e3889 841 migrate_get_current()->hostname);
894f0214 842
e3f37b2c 843 if (migrate_channel_requires_tls_upgrade(ioc)) {
967e3889
FR
844 /*
845 * tls_channel_connect will call back to this
846 * function after the TLS handshake,
847 * so we mustn't call multifd_send_thread until then
848 */
849 return multifd_tls_channel_connect(p, ioc, errp);
850
e3f37b2c
LZ
851 } else {
852 migration_ioc_register_yank(ioc);
853 p->registered_yank = true;
854 p->c = ioc;
855 qemu_thread_create(&p->thread, p->name, multifd_send_thread, p,
856 QEMU_THREAD_JOINABLE);
29647140 857 }
e3f37b2c 858 return true;
29647140
CZ
859}
860
03c7a42d
CZ
861static void multifd_new_send_channel_cleanup(MultiFDSendParams *p,
862 QIOChannel *ioc, Error *err)
863{
864 migrate_set_error(migrate_get_current(), err);
865 /* Error happen, we need to tell who pay attention to me */
866 qemu_sem_post(&multifd_send_state->channels_ready);
867 qemu_sem_post(&p->sem_sync);
868 /*
869 * Although multifd_send_thread is not created, but main migration
d8b71d96 870 * thread need to judge whether it is running, so we need to mark
03c7a42d
CZ
871 * its status.
872 */
873 p->quit = true;
874 object_unref(OBJECT(ioc));
875 error_free(err);
876}
877
d32ca5ad
JQ
878static void multifd_new_send_channel_async(QIOTask *task, gpointer opaque)
879{
880 MultiFDSendParams *p = opaque;
0e92f644 881 QIOChannel *ioc = QIO_CHANNEL(qio_task_get_source(task));
d32ca5ad
JQ
882 Error *local_err = NULL;
883
884 trace_multifd_new_send_channel_async(p->id);
bca762c2 885 if (!qio_task_propagate_error(task, &local_err)) {
0a08c794 886 qio_channel_set_delay(ioc, false);
d32ca5ad 887 p->running = true;
967e3889 888 if (multifd_channel_connect(p, ioc, &local_err)) {
bca762c2 889 return;
29647140 890 }
d32ca5ad 891 }
03c7a42d 892
967e3889 893 trace_multifd_new_send_channel_async_error(p->id, local_err);
0e92f644
FR
894 multifd_new_send_channel_cleanup(p, ioc, local_err);
895}
896
897static void multifd_new_send_channel_create(gpointer opaque)
898{
899 socket_send_channel_create(multifd_new_send_channel_async, opaque);
d32ca5ad
JQ
900}
901
902int multifd_save_setup(Error **errp)
903{
904 int thread_count;
905 uint32_t page_count = MULTIFD_PACKET_SIZE / qemu_target_page_size();
906 uint8_t i;
907
51b07548 908 if (!migrate_multifd()) {
d32ca5ad
JQ
909 return 0;
910 }
b7acd657 911
d32ca5ad
JQ
912 thread_count = migrate_multifd_channels();
913 multifd_send_state = g_malloc0(sizeof(*multifd_send_state));
914 multifd_send_state->params = g_new0(MultiFDSendParams, thread_count);
915 multifd_send_state->pages = multifd_pages_init(page_count);
916 qemu_sem_init(&multifd_send_state->channels_ready, 0);
d73415a3 917 qatomic_set(&multifd_send_state->exiting, 0);
ab7cbb0b 918 multifd_send_state->ops = multifd_ops[migrate_multifd_compression()];
d32ca5ad
JQ
919
920 for (i = 0; i < thread_count; i++) {
921 MultiFDSendParams *p = &multifd_send_state->params[i];
922
923 qemu_mutex_init(&p->mutex);
924 qemu_sem_init(&p->sem, 0);
925 qemu_sem_init(&p->sem_sync, 0);
926 p->quit = false;
927 p->pending_job = 0;
928 p->id = i;
929 p->pages = multifd_pages_init(page_count);
930 p->packet_len = sizeof(MultiFDPacket_t)
931 + sizeof(uint64_t) * page_count;
932 p->packet = g_malloc0(p->packet_len);
933 p->packet->magic = cpu_to_be32(MULTIFD_MAGIC);
934 p->packet->version = cpu_to_be32(MULTIFD_VERSION);
935 p->name = g_strdup_printf("multifdsend_%d", i);
d48c3a04
JQ
936 /* We need one extra place for the packet header */
937 p->iov = g_new0(struct iovec, page_count + 1);
815956f0 938 p->normal = g_new0(ram_addr_t, page_count);
ddec20f8 939 p->page_size = qemu_target_page_size();
d6f45eba 940 p->page_count = page_count;
5b1d9bab 941
b4bc342c 942 if (migrate_zero_copy_send()) {
5b1d9bab
LB
943 p->write_flags = QIO_CHANNEL_WRITE_FLAG_ZERO_COPY;
944 } else {
945 p->write_flags = 0;
946 }
947
0e92f644 948 multifd_new_send_channel_create(p);
d32ca5ad 949 }
ab7cbb0b
JQ
950
951 for (i = 0; i < thread_count; i++) {
952 MultiFDSendParams *p = &multifd_send_state->params[i];
953 Error *local_err = NULL;
954 int ret;
955
956 ret = multifd_send_state->ops->send_setup(p, &local_err);
957 if (ret) {
958 error_propagate(errp, local_err);
959 return ret;
960 }
961 }
d32ca5ad
JQ
962 return 0;
963}
964
965struct {
966 MultiFDRecvParams *params;
967 /* number of created threads */
968 int count;
969 /* syncs main thread and channels */
970 QemuSemaphore sem_sync;
971 /* global number of generated multifd packets */
972 uint64_t packet_num;
ab7cbb0b
JQ
973 /* multifd ops */
974 MultiFDMethods *ops;
d32ca5ad
JQ
975} *multifd_recv_state;
976
977static void multifd_recv_terminate_threads(Error *err)
978{
979 int i;
980
981 trace_multifd_recv_terminate_threads(err != NULL);
982
983 if (err) {
984 MigrationState *s = migrate_get_current();
985 migrate_set_error(s, err);
986 if (s->state == MIGRATION_STATUS_SETUP ||
987 s->state == MIGRATION_STATUS_ACTIVE) {
988 migrate_set_state(&s->state, s->state,
989 MIGRATION_STATUS_FAILED);
990 }
991 }
992
993 for (i = 0; i < migrate_multifd_channels(); i++) {
994 MultiFDRecvParams *p = &multifd_recv_state->params[i];
995
996 qemu_mutex_lock(&p->mutex);
997 p->quit = true;
998 /*
999 * We could arrive here for two reasons:
1000 * - normal quit, i.e. everything went fine, just finished
1001 * - error quit: We close the channels so the channel threads
1002 * finish the qio_channel_read_all_eof()
1003 */
1004 if (p->c) {
1005 qio_channel_shutdown(p->c, QIO_CHANNEL_SHUTDOWN_BOTH, NULL);
1006 }
1007 qemu_mutex_unlock(&p->mutex);
1008 }
1009}
1010
cfc3bcf3
LB
1011void multifd_load_shutdown(void)
1012{
51b07548 1013 if (migrate_multifd()) {
cfc3bcf3
LB
1014 multifd_recv_terminate_threads(NULL);
1015 }
1016}
1017
e5bac1f5 1018void multifd_load_cleanup(void)
d32ca5ad
JQ
1019{
1020 int i;
d32ca5ad 1021
51b07548 1022 if (!migrate_multifd()) {
e5bac1f5 1023 return;
d32ca5ad
JQ
1024 }
1025 multifd_recv_terminate_threads(NULL);
1026 for (i = 0; i < migrate_multifd_channels(); i++) {
1027 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1028
1029 if (p->running) {
d32ca5ad
JQ
1030 /*
1031 * multifd_recv_thread may hung at MULTIFD_FLAG_SYNC handle code,
1032 * however try to wakeup it without harm in cleanup phase.
1033 */
1034 qemu_sem_post(&p->sem_sync);
d32ca5ad 1035 }
10351fba
LB
1036
1037 qemu_thread_join(&p->thread);
d32ca5ad
JQ
1038 }
1039 for (i = 0; i < migrate_multifd_channels(); i++) {
1040 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1041
e9ab82b8 1042 migration_ioc_unregister_yank(p->c);
d32ca5ad
JQ
1043 object_unref(OBJECT(p->c));
1044 p->c = NULL;
1045 qemu_mutex_destroy(&p->mutex);
1046 qemu_sem_destroy(&p->sem_sync);
1047 g_free(p->name);
1048 p->name = NULL;
d32ca5ad
JQ
1049 p->packet_len = 0;
1050 g_free(p->packet);
1051 p->packet = NULL;
226468ba
JQ
1052 g_free(p->iov);
1053 p->iov = NULL;
cf2d4aa8
JQ
1054 g_free(p->normal);
1055 p->normal = NULL;
ab7cbb0b 1056 multifd_recv_state->ops->recv_cleanup(p);
d32ca5ad
JQ
1057 }
1058 qemu_sem_destroy(&multifd_recv_state->sem_sync);
1059 g_free(multifd_recv_state->params);
1060 multifd_recv_state->params = NULL;
1061 g_free(multifd_recv_state);
1062 multifd_recv_state = NULL;
d32ca5ad
JQ
1063}
1064
1065void multifd_recv_sync_main(void)
1066{
1067 int i;
1068
51b07548 1069 if (!migrate_multifd()) {
d32ca5ad
JQ
1070 return;
1071 }
1072 for (i = 0; i < migrate_multifd_channels(); i++) {
1073 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1074
1075 trace_multifd_recv_sync_main_wait(p->id);
1076 qemu_sem_wait(&multifd_recv_state->sem_sync);
1077 }
1078 for (i = 0; i < migrate_multifd_channels(); i++) {
1079 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1080
6e8a355d
DB
1081 WITH_QEMU_LOCK_GUARD(&p->mutex) {
1082 if (multifd_recv_state->packet_num < p->packet_num) {
1083 multifd_recv_state->packet_num = p->packet_num;
1084 }
d32ca5ad 1085 }
d32ca5ad
JQ
1086 trace_multifd_recv_sync_main_signal(p->id);
1087 qemu_sem_post(&p->sem_sync);
1088 }
1089 trace_multifd_recv_sync_main(multifd_recv_state->packet_num);
1090}
1091
1092static void *multifd_recv_thread(void *opaque)
1093{
1094 MultiFDRecvParams *p = opaque;
1095 Error *local_err = NULL;
1096 int ret;
1097
1098 trace_multifd_recv_thread_start(p->id);
1099 rcu_register_thread();
1100
1101 while (true) {
d32ca5ad
JQ
1102 uint32_t flags;
1103
1104 if (p->quit) {
1105 break;
1106 }
1107
1108 ret = qio_channel_read_all_eof(p->c, (void *)p->packet,
1109 p->packet_len, &local_err);
bca762c2 1110 if (ret == 0 || ret == -1) { /* 0: EOF -1: Error */
d32ca5ad
JQ
1111 break;
1112 }
1113
1114 qemu_mutex_lock(&p->mutex);
1115 ret = multifd_recv_unfill_packet(p, &local_err);
1116 if (ret) {
1117 qemu_mutex_unlock(&p->mutex);
1118 break;
1119 }
1120
d32ca5ad 1121 flags = p->flags;
ab7cbb0b
JQ
1122 /* recv methods don't know how to handle the SYNC flag */
1123 p->flags &= ~MULTIFD_FLAG_SYNC;
cf2d4aa8 1124 trace_multifd_recv(p->id, p->packet_num, p->normal_num, flags,
d32ca5ad
JQ
1125 p->next_packet_size);
1126 p->num_packets++;
cf2d4aa8 1127 p->total_normal_pages += p->normal_num;
d32ca5ad
JQ
1128 qemu_mutex_unlock(&p->mutex);
1129
cf2d4aa8 1130 if (p->normal_num) {
40a4bfe9 1131 ret = multifd_recv_state->ops->recv_pages(p, &local_err);
d32ca5ad
JQ
1132 if (ret != 0) {
1133 break;
1134 }
1135 }
1136
1137 if (flags & MULTIFD_FLAG_SYNC) {
1138 qemu_sem_post(&multifd_recv_state->sem_sync);
1139 qemu_sem_wait(&p->sem_sync);
1140 }
1141 }
1142
1143 if (local_err) {
1144 multifd_recv_terminate_threads(local_err);
13f2cb21 1145 error_free(local_err);
d32ca5ad
JQ
1146 }
1147 qemu_mutex_lock(&p->mutex);
1148 p->running = false;
1149 qemu_mutex_unlock(&p->mutex);
1150
1151 rcu_unregister_thread();
cf2d4aa8 1152 trace_multifd_recv_thread_end(p->id, p->num_packets, p->total_normal_pages);
d32ca5ad
JQ
1153
1154 return NULL;
1155}
1156
1157int multifd_load_setup(Error **errp)
1158{
1159 int thread_count;
1160 uint32_t page_count = MULTIFD_PACKET_SIZE / qemu_target_page_size();
1161 uint8_t i;
1162
6720c2b3 1163 /*
1164 * Return successfully if multiFD recv state is already initialised
1165 * or multiFD is not enabled.
1166 */
51b07548 1167 if (multifd_recv_state || !migrate_multifd()) {
d32ca5ad
JQ
1168 return 0;
1169 }
6720c2b3 1170
d32ca5ad
JQ
1171 thread_count = migrate_multifd_channels();
1172 multifd_recv_state = g_malloc0(sizeof(*multifd_recv_state));
1173 multifd_recv_state->params = g_new0(MultiFDRecvParams, thread_count);
d73415a3 1174 qatomic_set(&multifd_recv_state->count, 0);
d32ca5ad 1175 qemu_sem_init(&multifd_recv_state->sem_sync, 0);
ab7cbb0b 1176 multifd_recv_state->ops = multifd_ops[migrate_multifd_compression()];
d32ca5ad
JQ
1177
1178 for (i = 0; i < thread_count; i++) {
1179 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1180
1181 qemu_mutex_init(&p->mutex);
1182 qemu_sem_init(&p->sem_sync, 0);
1183 p->quit = false;
1184 p->id = i;
d32ca5ad
JQ
1185 p->packet_len = sizeof(MultiFDPacket_t)
1186 + sizeof(uint64_t) * page_count;
1187 p->packet = g_malloc0(p->packet_len);
1188 p->name = g_strdup_printf("multifdrecv_%d", i);
226468ba 1189 p->iov = g_new0(struct iovec, page_count);
cf2d4aa8 1190 p->normal = g_new0(ram_addr_t, page_count);
d6f45eba 1191 p->page_count = page_count;
ddec20f8 1192 p->page_size = qemu_target_page_size();
d32ca5ad 1193 }
ab7cbb0b
JQ
1194
1195 for (i = 0; i < thread_count; i++) {
1196 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1197 Error *local_err = NULL;
1198 int ret;
1199
1200 ret = multifd_recv_state->ops->recv_setup(p, &local_err);
1201 if (ret) {
1202 error_propagate(errp, local_err);
1203 return ret;
1204 }
1205 }
d32ca5ad
JQ
1206 return 0;
1207}
1208
1209bool multifd_recv_all_channels_created(void)
1210{
1211 int thread_count = migrate_multifd_channels();
1212
51b07548 1213 if (!migrate_multifd()) {
d32ca5ad
JQ
1214 return true;
1215 }
1216
a59136f3
DDAG
1217 if (!multifd_recv_state) {
1218 /* Called before any connections created */
1219 return false;
1220 }
1221
d73415a3 1222 return thread_count == qatomic_read(&multifd_recv_state->count);
d32ca5ad
JQ
1223}
1224
1225/*
1226 * Try to receive all multifd channels to get ready for the migration.
6720c2b3 1227 * Sets @errp when failing to receive the current channel.
d32ca5ad 1228 */
6720c2b3 1229void multifd_recv_new_channel(QIOChannel *ioc, Error **errp)
d32ca5ad
JQ
1230{
1231 MultiFDRecvParams *p;
1232 Error *local_err = NULL;
1233 int id;
1234
1235 id = multifd_recv_initial_packet(ioc, &local_err);
1236 if (id < 0) {
1237 multifd_recv_terminate_threads(local_err);
1238 error_propagate_prepend(errp, local_err,
1239 "failed to receive packet"
1240 " via multifd channel %d: ",
d73415a3 1241 qatomic_read(&multifd_recv_state->count));
6720c2b3 1242 return;
d32ca5ad
JQ
1243 }
1244 trace_multifd_recv_new_channel(id);
1245
1246 p = &multifd_recv_state->params[id];
1247 if (p->c != NULL) {
1248 error_setg(&local_err, "multifd: received id '%d' already setup'",
1249 id);
1250 multifd_recv_terminate_threads(local_err);
1251 error_propagate(errp, local_err);
6720c2b3 1252 return;
d32ca5ad
JQ
1253 }
1254 p->c = ioc;
1255 object_ref(OBJECT(ioc));
1256 /* initial packet */
1257 p->num_packets = 1;
1258
1259 p->running = true;
1260 qemu_thread_create(&p->thread, p->name, multifd_recv_thread, p,
1261 QEMU_THREAD_JOINABLE);
d73415a3 1262 qatomic_inc(&multifd_recv_state->count);
d32ca5ad 1263}