mirror of https://gitee.com/openkylin/linux.git
iommu/vt-d: Correctly disable Intel IOMMU force on
I made a mistake in commitbfd20f1
. We should skip the force on with the option enabled instead of vice versa. Not sure why this passed our performance test, sorry. Fixes:bfd20f1cc8
('x86, iommu/vt-d: Add an option to disable Intel IOMMU force on') Signed-off-by: Shaohua Li <shli@fb.com> Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
32c1431eea
commit
7304e8f28b
|
@ -514,7 +514,7 @@ int tboot_force_iommu(void)
|
|||
if (!tboot_enabled())
|
||||
return 0;
|
||||
|
||||
if (!intel_iommu_tboot_noforce)
|
||||
if (intel_iommu_tboot_noforce)
|
||||
return 1;
|
||||
|
||||
if (no_iommu || swiotlb || dmar_disabled)
|
||||
|
|
Loading…
Reference in New Issue