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
1 changed files with 3 additions and 1 deletions
|
@ -3204,7 +3204,9 @@ domains_done:
|
||||||
if (ret)
|
if (ret)
|
||||||
goto free_iommu;
|
goto free_iommu;
|
||||||
|
|
||||||
iommu_enable_translation(iommu);
|
if (!translation_pre_enabled(iommu))
|
||||||
|
iommu_enable_translation(iommu);
|
||||||
|
|
||||||
iommu_disable_protect_mem_regions(iommu);
|
iommu_disable_protect_mem_regions(iommu);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue