From: Peter Xu Date: Fri, 5 Dec 2025 17:20:54 +0000 (-0500) Subject: migration/options: Add x-ignore-shared X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e39dd4e5d5428837e0308e486beece36798f9ecd;p=thirdparty%2Fqemu.git migration/options: Add x-ignore-shared This aids scriptings only. Reviewed-by: Fabiano Rosas Link: https://lore.kernel.org/r/20251205172054.288909-1-peterx@redhat.com [peterx: make the property x-ignore-shared to match, per cedric] [peterx: fix over-80 line] Signed-off-by: Peter Xu --- diff --git a/migration/options.c b/migration/options.c index e78324b80c..ea19b2c7cd 100644 --- a/migration/options.c +++ b/migration/options.c @@ -203,6 +203,8 @@ const Property migration_properties[] = { MIGRATION_CAPABILITY_SWITCHOVER_ACK), DEFINE_PROP_MIG_CAP("x-dirty-limit", MIGRATION_CAPABILITY_DIRTY_LIMIT), DEFINE_PROP_MIG_CAP("mapped-ram", MIGRATION_CAPABILITY_MAPPED_RAM), + DEFINE_PROP_MIG_CAP("x-ignore-shared", + MIGRATION_CAPABILITY_X_IGNORE_SHARED), }; const size_t migration_properties_count = ARRAY_SIZE(migration_properties);