mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
migration: disable RDMA + postcopy-ram
It's believed that RDMA + postcopy-ram has been broken for a while. Rather than spending time re-enabling it, let's simply disable it as a trade-off. Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Li Zhijian <lizhijian@fujitsu.com> Message-ID: <20250305062825.772629-4-lizhijian@fujitsu.com> Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
parent
57be554c29
commit
103fa64195
1 changed files with 4 additions and 0 deletions
|
@ -458,6 +458,10 @@ bool migrate_rdma_caps_check(bool *caps, Error **errp)
|
|||
error_setg(errp, "RDMA and multifd can't be used together");
|
||||
return false;
|
||||
}
|
||||
if (caps[MIGRATION_CAPABILITY_POSTCOPY_RAM]) {
|
||||
error_setg(errp, "RDMA and postcopy-ram can't be used together");
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue