[libvirt] [PATCH] util: add stub pciConfigAddressToSysfsFile for non-linux platforms

Laine Stump laine at laine.org
Thu Mar 8 19:24:33 UTC 2012


Absence of this stub function caused a build failure on mingw32.
---

Pushed under build breaker rule (I'm doing way too many of these - I
really need to start running autobuild before any push, instead of
just make check && make syntax-check.)

 src/util/pci.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/util/pci.c b/src/util/pci.c
index a6212f2..e7bfb92 100644
--- a/src/util/pci.c
+++ b/src/util/pci.c
@@ -2209,6 +2209,15 @@ pciGetVirtualFunctionIndex(const char *pf_sysfs_device_link ATTRIBUTE_UNUSED,
 }
 
 int
+pciConfigAddressToSysfsFile(struct pci_config_address *dev ATTRIBUTE_UNUSED,
+                            char **pci_sysfs_device_link ATTRIBUTE_UNUSED)
+{
+    pciReportError(VIR_ERR_INTERNAL_ERROR, _("pciConfigAddressToSysfsFile is not "
+                   "supported on non-linux platforms"));
+    return -1;
+}
+
+int
 pciDeviceNetName(char *device_link_sysfs_path ATTRIBUTE_UNUSED,
                  char **netname ATTRIBUTE_UNUSED)
 {
-- 
1.7.7.6




More information about the libvir-list mailing list