From: Laine Stump Date: Sat, 22 Oct 2016 17:10:10 +0000 (-0400) Subject: conf: rename virDomainPCIAddressGetNextSlot() to ...GetNextAddr() X-Git-Tag: v3.0.0-rc1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e97fab2665a3889ce9b4c11b689d09f08978485c;p=thirdparty%2Flibvirt.git conf: rename virDomainPCIAddressGetNextSlot() to ...GetNextAddr() With the advent of VIR_PCI_CONNECT_AGGREGATE_SLOT, the new name is more appropriate, since the address returned may be another address on the same slot as last time, not necessarily a new slot. --- diff --git a/src/conf/domain_addr.c b/src/conf/domain_addr.c index 57ddef8504..58cb8048be 100644 --- a/src/conf/domain_addr.c +++ b/src/conf/domain_addr.c @@ -770,7 +770,7 @@ virDomainPCIAddressFindUnusedFunctionOnBus(virDomainPCIAddressBusPtr bus, static int ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) -virDomainPCIAddressGetNextSlot(virDomainPCIAddressSetPtr addrs, +virDomainPCIAddressGetNextAddr(virDomainPCIAddressSetPtr addrs, virPCIDeviceAddressPtr next_addr, int function, virDomainPCIConnectFlags flags) @@ -879,7 +879,7 @@ virDomainPCIAddressReserveNextAddr(virDomainPCIAddressSetPtr addrs, { virPCIDeviceAddress addr; - if (virDomainPCIAddressGetNextSlot(addrs, &addr, function, flags) < 0) + if (virDomainPCIAddressGetNextAddr(addrs, &addr, function, flags) < 0) return -1; if (virDomainPCIAddressReserveAddr(addrs, &addr, flags, false) < 0)