From: Andre Przywara Date: Wed, 1 Apr 2020 10:27:24 +0000 (+0100) Subject: vfio: Ignore -ENODEV when getting MSI cookie X-Git-Tag: v5.7-rc1~94^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f44efca0493ddc1e8731047c234ec8e475943077;p=thirdparty%2Flinux.git vfio: Ignore -ENODEV when getting MSI cookie When we try to get an MSI cookie for a VFIO device, that can fail if CONFIG_IOMMU_DMA is not set. In this case iommu_get_msi_cookie() returns -ENODEV, and that should not be fatal. Ignore that case and proceed with the initialisation. This fixes VFIO with a platform device on the Calxeda Midway (no MSIs). Fixes: f6810c15cf973f ("iommu/arm-smmu: Clean up early-probing workarounds") Signed-off-by: Andre Przywara Acked-by: Robin Murphy Reviewed-by: Eric Auger Signed-off-by: Alex Williamson --- diff --git a/drivers/vfio/vfio_iommu_type1.c b/drivers/vfio/vfio_iommu_type1.c index 9fdfae1cb17aa..85b32c3252829 100644 --- a/drivers/vfio/vfio_iommu_type1.c +++ b/drivers/vfio/vfio_iommu_type1.c @@ -1787,7 +1787,7 @@ static int vfio_iommu_type1_attach_group(void *iommu_data, if (resv_msi) { ret = iommu_get_msi_cookie(domain->domain, resv_msi_base); - if (ret) + if (ret && ret != -ENODEV) goto out_detach; }