From: Fabiano Rosas <farosas@suse.de>
To: Lukas Straub <lukasstraub2@web.de>, qemu-devel@nongnu.org
Cc: Peter Xu <peterx@redhat.com>, Laurent Vivier <lvivier@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Zhang Chen <zhangckid@gmail.com>,
Hailiang Zhang <zhanghailiang@xfusion.com>,
Markus Armbruster <armbru@redhat.com>,
Li Zhijian <lizhijian@fujitsu.com>,
"Dr. David Alan Gilbert" <dave@treblig.org>,
Lukas Straub <lukasstraub2@web.de>,
Juan Quintela <quintela@trasno.org>
Subject: Re: [PATCH v8 00/17] migration: Add COLO multifd support and COLO migration unit test
Date: Tue, 17 Feb 2026 11:14:03 -0300 [thread overview]
Message-ID: <87bjhnmp90.fsf@suse.de> (raw)
In-Reply-To: <87ecmjmsbm.fsf@suse.de>
Fabiano Rosas <farosas@suse.de> writes:
> Lukas Straub <lukasstraub2@web.de> writes:
>
>> Hello everyone,
>> This has some cleanups for and adds multifd support and migration unit tests
>> for COLO migration.
>>
>> Regards,
>> Lukas
>>
>> Signed-off-by: Lukas Straub <lukasstraub2@web.de>
>> ---
>> Changes in v8:
>> - Fix peter's review comments
>> - Link to v7: https://lore.kernel.org/qemu-devel/20260210-colo_unit_test_multifd-v7-0-23bd32f36828@web.de
>>
>> Changes in v7:
>> - Fix peter's review comments
>> - Link to v6: https://lore.kernel.org/qemu-devel/20260206-colo_unit_test_multifd-v6-0-27779dda139d@web.de
>>
>> Changes in v6:
>> - Fix the crash when running COLO with TCG accel.
>> - Link to v5: https://lore.kernel.org/qemu-devel/20260203-colo_unit_test_multifd-v5-0-57508b7389f6@web.de
>>
>> Changes in v5:
>> - Remove unused inmports from multifd-colo.c
>> - Mention the checkpoint overhead of reset to the Q35 fix
>> - Link to v4: https://lore.kernel.org/qemu-devel/20260130-colo_unit_test_multifd-v4-0-7115ab6f0e77@web.de
>>
>> Changes in v4:
>> - Add cleanup patches to remove migration_incoming_colo_enabled() and MIG_CMD_ENABLE_COLO
>> - Add more comments to the colo unit test
>> - Call colo_release_ram_cache() after multifd threads terminate
>> - Link to v3: https://lore.kernel.org/qemu-devel/20260125-colo_unit_test_multifd-v3-0-ae926ccd8eae@web.de
>>
>> Changes in v3:
>> - Fix peter's review comments.
>> - Fix COLO with Q35 machine
>> - Link to v2: https://lore.kernel.org/qemu-devel/20260117-colo_unit_test_multifd-v2-0-ab521777fa51@web.de
>>
>> Changes in v2:
>> - Fix review comments
>> - Hide stderr in colo migration test since the logged errors are expected
>> - Add benchmarking data for multifd
>> - Add myself as maintainer for COLO migration framework
>> - Link to v1: https://lore.kernel.org/qemu-devel/20251230-colo_unit_test_multifd-v1-0-f9734bc74c71@web.de
>>
>> ---
>> Lukas Straub (17):
>> MAINTAINERS: Add myself as maintainer for COLO migration framework
>> MAINTAINERS: Remove Hailiang Zhang from COLO migration framework
>> colo: Setup ram cache in normal migration path
>> colo: Replace migration_incoming_colo_enabled() with migrate_colo()
>> colo: Remove ENABLE_COLO savevm command and mark it as deprecated
>> ram: Remove colo special-casing
>> multifd: Move ram state receive into multifd_ram_state_recv()
>> multifd: Add COLO support
>> Call colo_release_ram_cache() after multifd threads terminate
>> colo: Fix crash during device vmstate load
>> colo: Hold the BQL while sending ram state
>> colo: Do not hold the BQL while receiving ram state.
>> migration-test: Add COLO migration unit test
>> Convert colo main documentation to restructuredText
>> qemu-colo.rst: Miscellaneous changes
>> qemu-colo.rst: Add my copyright
>> qemu-colo.rst: Simplify the block replication setup
>>
>> MAINTAINERS | 6 +-
>> docs/COLO-FT.txt | 334 ----------------------------------
>> docs/system/index.rst | 1 +
>> docs/system/qemu-colo.rst | 362 +++++++++++++++++++++++++++++++++++++
>> include/migration/colo.h | 3 -
>> migration/colo.c | 21 ++-
>> migration/meson.build | 2 +-
>> migration/migration.c | 61 ++-----
>> migration/multifd-colo.c | 44 +++++
>> migration/multifd-colo.h | 26 +++
>> migration/multifd-nocomp.c | 10 +-
>> migration/multifd.c | 19 +-
>> migration/multifd.h | 5 +-
>> migration/ram.c | 12 +-
>> migration/savevm.c | 37 +---
>> migration/savevm.h | 1 -
>> migration/trace-events | 1 -
>> tests/qtest/meson.build | 7 +-
>> tests/qtest/migration-test.c | 1 +
>> tests/qtest/migration/colo-tests.c | 198 ++++++++++++++++++++
>> tests/qtest/migration/framework.h | 5 +
>> 21 files changed, 720 insertions(+), 436 deletions(-)
>> ---
>> base-commit: 0b91040d23dc8820724a60c811223b777f3bc6b7
>> change-id: 20251230-colo_unit_test_multifd-8bf58dcebd46
>>
>> Best regards,
>
> Queued, thanks
Actually, I'm gonna drop it for now. Tests are failing
non-deterministically, seems like a cleanup race due to yank.
QTEST_QEMU_BINARY=./qemu-system-x86_64 ./tests/qtest/migration-test
--full -p /x86_64/migration/colo/multifd/primary_failover_checkpoint
...
../tests/qtest/libqtest.c:201: kill_qemu() tried to terminate QEMU
process but encountered exit status 1 (expected 0)
next prev parent reply other threads:[~2026-02-17 14:14 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-10 16:22 [PATCH v8 00/17] migration: Add COLO multifd support and COLO migration unit test Lukas Straub
2026-02-10 16:22 ` [PATCH v8 01/17] MAINTAINERS: Add myself as maintainer for COLO migration framework Lukas Straub
2026-02-10 16:23 ` [PATCH v8 02/17] MAINTAINERS: Remove Hailiang Zhang from " Lukas Straub
2026-02-10 16:23 ` [PATCH v8 03/17] colo: Setup ram cache in normal migration path Lukas Straub
2026-02-10 16:23 ` [PATCH v8 04/17] colo: Replace migration_incoming_colo_enabled() with migrate_colo() Lukas Straub
2026-02-10 16:23 ` [PATCH v8 05/17] colo: Remove ENABLE_COLO savevm command and mark it as deprecated Lukas Straub
2026-02-10 17:00 ` Peter Xu
2026-02-10 16:23 ` [PATCH v8 06/17] ram: Remove colo special-casing Lukas Straub
2026-02-10 16:23 ` [PATCH v8 07/17] multifd: Move ram state receive into multifd_ram_state_recv() Lukas Straub
2026-02-10 16:23 ` [PATCH v8 08/17] multifd: Add COLO support Lukas Straub
2026-02-10 16:23 ` [PATCH v8 09/17] Call colo_release_ram_cache() after multifd threads terminate Lukas Straub
2026-02-10 16:23 ` [PATCH v8 10/17] colo: Fix crash during device vmstate load Lukas Straub
2026-02-10 16:23 ` [PATCH v8 11/17] colo: Hold the BQL while sending ram state Lukas Straub
2026-02-10 16:23 ` [PATCH v8 12/17] colo: Do not hold the BQL while receiving " Lukas Straub
2026-02-10 16:23 ` [PATCH v8 13/17] migration-test: Add COLO migration unit test Lukas Straub
2026-02-10 16:23 ` [PATCH v8 14/17] Convert colo main documentation to restructuredText Lukas Straub
2026-02-10 16:23 ` [PATCH v8 15/17] qemu-colo.rst: Miscellaneous changes Lukas Straub
2026-02-10 16:23 ` [PATCH v8 16/17] qemu-colo.rst: Add my copyright Lukas Straub
2026-02-10 16:23 ` [PATCH v8 17/17] qemu-colo.rst: Simplify the block replication setup Lukas Straub
2026-02-17 13:07 ` Fabiano Rosas
2026-02-17 13:07 ` [PATCH v8 00/17] migration: Add COLO multifd support and COLO migration unit test Fabiano Rosas
2026-02-17 14:14 ` Fabiano Rosas [this message]
2026-02-19 13:40 ` Lukas Straub
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87bjhnmp90.fsf@suse.de \
--to=farosas@suse.de \
--cc=armbru@redhat.com \
--cc=dave@treblig.org \
--cc=lizhijian@fujitsu.com \
--cc=lukasstraub2@web.de \
--cc=lvivier@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@trasno.org \
--cc=zhangckid@gmail.com \
--cc=zhanghailiang@xfusion.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.