Re: [libvirt] [PATCH v3 04/11] conf: eliminate virDomainPCIAddressReserveNextSlot()

2016-12-23 Thread Andrea Bolognani
On Mon, 2016-12-19 at 10:25 -0500, Laine Stump wrote: > Since we don't actually reserve an entire slot at a time anymore, the > name of this function is just confusing, and it's almost identical in > operation to virDomainPCIAddressReserveNextAddr() anyway, so remove > the *Slot() function and

[libvirt] [PATCH v3 04/11] conf: eliminate virDomainPCIAddressReserveNextSlot()

2016-12-19 Thread Laine Stump
Since we don't actually reserve an entire slot at a time anymore, the name of this function is just confusing, and it's almost identical in operation to virDomainPCIAddressReserveNextAddr() anyway, so remove the *Slot() function and replace calls to it with calls to *Addr(..., -1). ---