the default is 'auto', but for those which are marked as capable for live migration, we want to explicitly enable that, so we get an early error on start if the driver does not support that.
Signed-off-by: Dominik Csapak <d.csa...@proxmox.com> --- PVE/QemuServer/PCI.pm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/PVE/QemuServer/PCI.pm b/PVE/QemuServer/PCI.pm index 1673041b..402b4e7a 100644 --- a/PVE/QemuServer/PCI.pm +++ b/PVE/QemuServer/PCI.pm @@ -429,9 +429,11 @@ sub parse_hostpci { if ($mapping) { # we have no ordinary pci id, must be a mapping - my $devices = PVE::Mapping::PCI::find_on_current_node($mapping); + my ($devices, $config) = PVE::Mapping::PCI::find_on_current_node($mapping); die "PCI device mapping not found for '$mapping'\n" if !$devices || !scalar($devices->@*); + $res->{'live-migration-capable'} = 1 if $config->{'live-migration-capable'}; + for my $device ($devices->@*) { eval { PVE::Mapping::PCI::assert_valid($mapping, $device) }; die "PCI device mapping invalid (hardware probably changed): $@\n" if $@; @@ -632,6 +634,10 @@ sub print_hostpci_devices { $devicestr .= ",host=$pcidevice->{id}"; } + if ($d->{'live-migration-capable'}) { + $devicestr .= ",enable-migration=on" + } + my $mf_addr = $multifunction ? ".$j" : ''; $devicestr .= ",id=${id}${mf_addr}${pciaddr}${mf_addr}"; -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel