iommu/vt-d: Enable Translation only if it was previously disabled
Do not touch the TE bit unless we know translation is disabled. Tested-by: ZhenHua Li <zhen-hual@hp.com> Tested-by: Baoquan He <bhe@redhat.com> Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
60b523ecfe
commit
8939ddf6d6
|
@ -3204,7 +3204,9 @@ domains_done:
|
|||
if (ret)
|
||||
goto free_iommu;
|
||||
|
||||
iommu_enable_translation(iommu);
|
||||
if (!translation_pre_enabled(iommu))
|
||||
iommu_enable_translation(iommu);
|
||||
|
||||
iommu_disable_protect_mem_regions(iommu);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue