On Fri, Aug 23, 2019 at 03:17:29PM +0800, Lu Baolu wrote: > --- a/drivers/iommu/intel-iommu.c > +++ b/drivers/iommu/intel-iommu.c > @@ -4569,9 +4569,6 @@ static int __init platform_optin_force_iommu(void) > iommu_identity_mapping |= IDENTMAP_ALL; > > dmar_disabled = 0; > -#if defined(CONFIG_X86) && defined(CONFIG_SWIOTLB) > - swiotlb = 0; > -#endif > no_iommu = 0; > > return 1; > @@ -4710,9 +4707,6 @@ int __init intel_iommu_init(void) > } > up_write(&dmar_global_lock); > > -#if defined(CONFIG_X86) && defined(CONFIG_SWIOTLB) > - swiotlb = 0; > -#endif
So this will cause the 64MB SWIOTLB aperture to be allocated even when there will never be an untrusted device in the system, right? I guess this will break some kdump setups as they need to resize their low memory allocations to make room for the aperture because of this patch-set. But I also don't see a way around this for now as untrusted devices are usually hotplugged and might not be present at boot. So we can't make the decision about the allocation at boot time. But this mechanism needs to be moved to the dma-iommu implementation at some point, and then we should allocate the bounce memory pages on-demand. We can easily do this in page-size chunks and map them together with iommu page-tables. This way we don't need to pre-allocate a large memory-chunk at boot. Regards, Joerg _______________________________________________ iommu mailing list iommu@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/iommu