1
0
Fork 0

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>
hifive-unleashed-5.1
Joerg Roedel 2015-06-12 14:40:01 +02:00
parent 60b523ecfe
commit 8939ddf6d6
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}