Now that we can safely iterate over devices that don't have
an associated virDomainDeviceInfo, supporting IOMMU devices
is no longer a problem.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
src/conf/domain_conf.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index 16820424be..eda424dbef 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -4252,6 +4252,13 @@ virDomainDeviceInfoIterateInternal(virDomainDefPtr def,
return rc;
}
+ if (def->iommu) {
+ device.type = VIR_DOMAIN_DEVICE_IOMMU;
+ device.data.iommu = def->iommu;
+ if ((rc = cb(def, &device, NULL, opaque)) != 0)
+ return rc;
+ }
+
/* Coverity is not very happy with this - all dead_error_condition */
#if !STATIC_ANALYSIS
/* This switch statement is here to trigger compiler warning when adding
--
2.21.0