aboutsummaryrefslogtreecommitdiff
path: root/migration
diff options
context:
space:
mode:
authorPeter Xu <peterx@redhat.com>2022-10-04 14:24:28 -0400
committerJuan Quintela <quintela@redhat.com>2022-11-21 11:58:10 +0100
commitafed4273b5c9438dfbaa0b4762d0433f295ccdc1 (patch)
tree107c82e81998fb3b16efedcfce23d2e18560a4d4 /migration
parentf5816b5c86ed399c99ce8662a4ed96aab32c5eef (diff)
downloadqemu-afed4273b5c9438dfbaa0b4762d0433f295ccdc1.zip
qemu-afed4273b5c9438dfbaa0b4762d0433f295ccdc1.tar.gz
qemu-afed4273b5c9438dfbaa0b4762d0433f295ccdc1.tar.bz2
migration: Disallow postcopy preempt to be used with compress
The preempt mode requires the capability to assign channel for each of the page, while the compression logic will currently assign pages to different compress thread/local-channel so potentially they're incompatible. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Peter Xu <peterx@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r--migration/migration.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/migration/migration.c b/migration/migration.c
index 739bb68..f3ed77a 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -1337,6 +1337,17 @@ static bool migrate_caps_check(bool *cap_list,
error_setg(errp, "Postcopy preempt requires postcopy-ram");
return false;
}
+
+ /*
+ * Preempt mode requires urgent pages to be sent in separate
+ * channel, OTOH compression logic will disorder all pages into
+ * different compression channels, which is not compatible with the
+ * preempt assumptions on channel assignments.
+ */
+ if (cap_list[MIGRATION_CAPABILITY_COMPRESS]) {
+ error_setg(errp, "Postcopy preempt not compatible with compress");
+ return false;
+ }
}
return true;