1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-30 18:50:18 +03:00

qemu: Add mapped-ram migration capability

Add the mapped-ram migration capability introduced in QEMU 9.0.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Jim Fehlig 2024-04-04 16:55:10 -06:00
parent f80d59afe1
commit ac2f196ddd
2 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,7 @@ VIR_ENUM_IMPL(qemuMigrationCapability,
"zero-copy-send",
"postcopy-preempt",
"switchover-ack",
"mapped-ram",
);

View File

@ -42,6 +42,7 @@ typedef enum {
QEMU_MIGRATION_CAP_ZERO_COPY_SEND,
QEMU_MIGRATION_CAP_POSTCOPY_PREEMPT,
QEMU_MIGRATION_CAP_SWITCHOVER_ACK,
QEMU_MIGRATION_CAP_MAPPED_RAM,
QEMU_MIGRATION_CAP_LAST
} qemuMigrationCapability;