]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: Remove code duplication
authorJiri Denemark <jdenemar@redhat.com>
Fri, 20 Aug 2010 11:57:35 +0000 (13:57 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Fri, 20 Aug 2010 14:26:28 +0000 (16:26 +0200)
We already filled the PCI address structure when we checked whether it's
free or not, so let's just use the structure here instead of filling it
again.

src/qemu/qemu_conf.c

index c7ed0a336b73313d0e006da7d79ebbd057e92a3f..1c98447f27df8e7c9c01c2fd93ade47a48fa9d34 100644 (file)
@@ -2258,9 +2258,7 @@ int qemuDomainPCIAddressSetNextAddr(qemuDomainPCIAddressSetPtr addrs,
         }
 
         dev->type = VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI;
-        dev->addr.pci.domain = 0;
-        dev->addr.pci.bus = 0;
-        dev->addr.pci.slot = i;
+        dev->addr.pci = maybe.addr.pci;
 
         addrs->nextslot = i + 1;
         if (QEMU_PCI_ADDRESS_LAST_SLOT < addrs->nextslot)