[libvirt] [PATCH v1 04/10] tests: Fix the iommu group path in mock pci

Daniel Henrique Barboza danielhb413 at gmail.com
Wed Jun 26 19:35:53 UTC 2019


From: Shivaprasad G Bhat <sbhat at linux.vnet.ibm.com>

The mocked path falls into /sys/bus/kernel/iommu_groups instead of
/sys/kernel/iommu_groups. Needed for adding some new test cases.

Signed-off-by: Shivaprasad G Bhat <sbhat at linux.vnet.ibm.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413 at gmail.com>
---
 tests/virpcimock.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/virpcimock.c b/tests/virpcimock.c
index 5d55038a26..acd7560f8b 100644
--- a/tests/virpcimock.c
+++ b/tests/virpcimock.c
@@ -409,7 +409,7 @@ pci_device_new_from_stub(const struct pciDevice *data)
     make_file(devpath, "driver_override", NULL, -1);
 
     if (snprintf(tmp, sizeof(tmp),
-                 "%s/../../../kernel/iommu_groups/%d",
+                 "%s/../../../../kernel/iommu_groups/%d",
                  devpath, dev->iommuGroup) < 0) {
         ABORT("@tmp overflow");
     }
@@ -417,7 +417,7 @@ pci_device_new_from_stub(const struct pciDevice *data)
         ABORT("Unable to create %s", tmp);
 
     if (snprintf(tmp, sizeof(tmp),
-                 "../../../kernel/iommu_groups/%d", dev->iommuGroup) < 0) {
+                 "../../../../kernel/iommu_groups/%d", dev->iommuGroup) < 0) {
         ABORT("@tmp overflow");
     }
     make_symlink(devpath, "iommu_group", tmp);
-- 
2.20.1




More information about the libvir-list mailing list