[PULL 07/39] migration: Give one error if trying to set MULTIFD and XBZRLE

Juan Quintela quintela at redhat.com
Tue Oct 24 13:12:33 UTC 2023


Reviewed-by: Fabiano Rosas <farosas at suse.de>
Signed-off-by: Juan Quintela <quintela at redhat.com>
Message-ID: <20231019110724.15324-2-quintela at redhat.com>
---
 migration/options.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/migration/options.c b/migration/options.c
index 42fb818956..b8c3c3218d 100644
--- a/migration/options.c
+++ b/migration/options.c
@@ -618,6 +618,13 @@ bool migrate_caps_check(bool *old_caps, bool *new_caps, Error **errp)
         }
     }
 
+    if (new_caps[MIGRATION_CAPABILITY_MULTIFD]) {
+        if (new_caps[MIGRATION_CAPABILITY_XBZRLE]) {
+            error_setg(errp, "Multifd is not compatible with xbzrle");
+            return false;
+        }
+    }
+
     return true;
 }
 
-- 
2.41.0



More information about the libvir-list mailing list