From e39dd4e5d5428837e0308e486beece36798f9ecd Mon Sep 17 00:00:00 2001 From: Peter Xu Date: Fri, 5 Dec 2025 12:20:54 -0500 Subject: [PATCH] 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 --- migration/options.c | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.47.3