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 <[email protected]> --- 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/[email protected] Changes in v3: - Fix peter's review comments. - Fix COLO with Q35 machine - Link to v2: https://lore.kernel.org/qemu-devel/[email protected] 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/[email protected] --- Lukas Straub (16): 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 loadvm command functions colo: Don't send ENABLE_COLO command ram: Remove colo special-casing 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 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 | 11 +- migration/meson.build | 2 +- migration/migration.c | 61 ++----- migration/multifd-colo.c | 50 +++++ 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 | 30 +-- 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 | 206 +++++++++++++++++++++ tests/qtest/migration/framework.h | 5 + 21 files changed, 726 insertions(+), 427 deletions(-) --- base-commit: 65fb9de4888f9bf32bc4f60c880da3dff04c4fd9 change-id: 20251230-colo_unit_test_multifd-8bf58dcebd46 Best regards, -- Lukas Straub <[email protected]>
