[PATCH 4/4] vfio: Do not allocate domain if broken_unmanaged_domain
Nicolin Chen
nicolinc at nvidia.com
Fri Jan 27 12:04:20 PST 2023
Add a sanity of the broken_unmanaged_domain flag to reject the use of
vfio_iommu_type1 in the early stage, if the flag is set by the iommu
driver.
Suggested-by: Jason Gunthorpe <jgg at nvidia.com>
Signed-off-by: Nicolin Chen <nicolinc at nvidia.com>
---
drivers/vfio/vfio_iommu_type1.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/vfio/vfio_iommu_type1.c b/drivers/vfio/vfio_iommu_type1.c
index 23c24fe98c00..6ec238aefe89 100644
--- a/drivers/vfio/vfio_iommu_type1.c
+++ b/drivers/vfio/vfio_iommu_type1.c
@@ -2170,7 +2170,10 @@ static int vfio_iommu_domain_alloc(struct device *dev, void *data)
{
struct iommu_domain **domain = data;
- *domain = iommu_domain_alloc(dev->bus);
+ if (device_iommu_unmanaged_supported(dev))
+ *domain = iommu_domain_alloc(dev->bus);
+ else
+ *domain = NULL;
return 1; /* Don't iterate */
}
--
2.39.1
More information about the linux-arm-kernel
mailing list