Current code reserves slot 1 function 2 even if there is a user
defined PIIX3 USB controller there.
---
src/qemu/qemu_command.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
index 6ff1b2c..e4bdb57 100644
--- a/src/qemu/qemu_command.c
+++ b/src/qemu/qemu_command.c
@@ -1181,7 +1181,8 @@ qemuAssignDevicePCISlots(virDomainDefPtr def,
qemuDomainPCIAddressSetPtr addrs)
* hardcoded slot=1, multifunction device
*/
for (function = 0; function < QEMU_PCI_ADDRESS_LAST_FUNCTION; function++) {
- if (function == 1 && (reservedIDE || reservedUSB))
+ if ((function == 1 && reservedIDE) ||
+ (function == 2 && reservedUSB))
/* we have reserved this pci address */
continue;
--
1.7.6