rename qemuGet*PciHostDeviceList to virHostdevGet*PciHostDeviceList

This commit is contained in:
Chunyan Liu 2014-03-05 19:47:10 +08:00 committed by Daniel P. Berrange
parent 5a4f783608
commit 4a3bc4902d

View File

@ -42,7 +42,7 @@
#define VIR_FROM_THIS VIR_FROM_QEMU #define VIR_FROM_THIS VIR_FROM_QEMU
static virPCIDeviceListPtr static virPCIDeviceListPtr
qemuGetPciHostDeviceList(virDomainHostdevDefPtr *hostdevs, int nhostdevs) virHostdevGetPciHostDeviceList(virDomainHostdevDefPtr *hostdevs, int nhostdevs)
{ {
virPCIDeviceListPtr list; virPCIDeviceListPtr list;
size_t i; size_t i;
@ -94,7 +94,7 @@ qemuGetPciHostDeviceList(virDomainHostdevDefPtr *hostdevs, int nhostdevs)
/* /*
* qemuGetActivePciHostDeviceList - make a new list with a *copy* of * virHostdevGetActivePciHostDeviceList - make a new list with a *copy* of
* every virPCIDevice object that is found on the activePciHostdevs * every virPCIDevice object that is found on the activePciHostdevs
* list *and* is in the hostdev list for this domain. * list *and* is in the hostdev list for this domain.
* *
@ -103,7 +103,7 @@ qemuGetPciHostDeviceList(virDomainHostdevDefPtr *hostdevs, int nhostdevs)
* Pre-condition: activePciHostdevs is locked * Pre-condition: activePciHostdevs is locked
*/ */
static virPCIDeviceListPtr static virPCIDeviceListPtr
qemuGetActivePciHostDeviceList(virHostdevManagerPtr mgr, virHostdevGetActivePciHostDeviceList(virHostdevManagerPtr mgr,
virDomainHostdevDefPtr *hostdevs, virDomainHostdevDefPtr *hostdevs,
int nhostdevs) int nhostdevs)
{ {
@ -673,7 +673,7 @@ virHostdevPreparePCIDevices(virHostdevManagerPtr hostdev_mgr,
virObjectLock(hostdev_mgr->activePciHostdevs); virObjectLock(hostdev_mgr->activePciHostdevs);
virObjectLock(hostdev_mgr->inactivePciHostdevs); virObjectLock(hostdev_mgr->inactivePciHostdevs);
if (!(pcidevs = qemuGetPciHostDeviceList(hostdevs, nhostdevs))) if (!(pcidevs = virHostdevGetPciHostDeviceList(hostdevs, nhostdevs)))
goto cleanup; goto cleanup;
/* We have to use 9 loops here. *All* devices must /* We have to use 9 loops here. *All* devices must
@ -1297,7 +1297,7 @@ qemuDomainReAttachHostdevDevices(virQEMUDriverPtr driver,
virObjectLock(hostdev_mgr->activePciHostdevs); virObjectLock(hostdev_mgr->activePciHostdevs);
virObjectLock(hostdev_mgr->inactivePciHostdevs); virObjectLock(hostdev_mgr->inactivePciHostdevs);
if (!(pcidevs = qemuGetActivePciHostDeviceList(hostdev_mgr, if (!(pcidevs = virHostdevGetActivePciHostDeviceList(hostdev_mgr,
hostdevs, hostdevs,
nhostdevs))) { nhostdevs))) {
virErrorPtr err = virGetLastError(); virErrorPtr err = virGetLastError();