summaryrefslogtreecommitdiff
path: root/tests/virhostdevtest.c
diff options
context:
space:
mode:
authorDaniel Henrique Barboza <danielhb413@gmail.com>2021-01-04 09:54:28 -0300
committerDaniel Henrique Barboza <danielhb413@gmail.com>2021-01-29 17:52:10 -0300
commitb0264e9404e1469fb174ad2839305c291a8a73dd (patch)
treee72664f1461c873ba8972de35e9ae8d130ba4e29 /tests/virhostdevtest.c
parent0e0c974b20449df3e71fd9dc423ecdd4d962020e (diff)
downloadlibvirt-b0264e9404e1469fb174ad2839305c291a8a73dd.tar.gz
virpci.c: simplify virPCIDeviceNew() signature
The current virPCIDeviceNew() signature, receiving 4 uints in sequence (domain, bus, slot, function), is not neat. We already have a way to represent a PCI address in virPCIDeviceAddress that is used in the code. Aside from the test files, most of virPCIDeviceNew() callers have access to a virPCIDeviceAddress reference, but then we need to retrieve the 4 required uints (addr.domain, addr.bus, addr.slot, addr.function) to satisfy virPCIDeviceNew(). The result is that we have extra verbosity/boilerplate to retrieve an information that is already available in virPCIDeviceAddress. A better way is presented by virNVMEDeviceNew(), where the caller just supplies a virPCIDeviceAddress pointer and the function handles the details internally. This patch changes virPCIDeviceNew() to receive a virPCIDeviceAddress pointer instead of 4 uints. Reviewed-by: Laine Stump <laine@redhat.com> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'tests/virhostdevtest.c')
-rw-r--r--tests/virhostdevtest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/virhostdevtest.c b/tests/virhostdevtest.c
index 385db0849a..40c14a5281 100644
--- a/tests/virhostdevtest.c
+++ b/tests/virhostdevtest.c
@@ -138,7 +138,8 @@ myInit(void)
}
for (i = 0; i < nhostdevs; i++) {
- if (!(dev[i] = virPCIDeviceNew(0, 0, i + 1, 0)))
+ virDomainHostdevSubsys subsys = hostdevs[i]->source.subsys;
+ if (!(dev[i] = virPCIDeviceNew(&subsys.u.pci.addr)))
goto cleanup;
virPCIDeviceSetStubDriver(dev[i], VIR_PCI_STUB_DRIVER_VFIO);