mirror of https://gitee.com/openkylin/libvirt.git
bhyve: add missing param to virDomainPCIAddressBusSetModel
Fixes build error introduced in
commit aa15e9259f
Author: Laine Stump <laine@redhat.com>
Date: Sun Apr 5 22:40:37 2020 -0400
qemu/conf: set HOTPLUGGABLE connect flag during PCI address set init
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
5ccd6ae586
commit
b85a8f2288
|
@ -71,7 +71,8 @@ bhyveDomainPCIAddressSetCreate(virDomainDefPtr def, unsigned int nbuses)
|
|||
return NULL;
|
||||
|
||||
if (virDomainPCIAddressBusSetModel(&addrs->buses[0],
|
||||
VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT) < 0)
|
||||
VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT,
|
||||
true) < 0)
|
||||
goto error;
|
||||
|
||||
if (virDomainDeviceInfoIterate(def, bhyveCollectPCIAddress, addrs) < 0)
|
||||
|
|
Loading…
Reference in New Issue