All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iommu/vt-d: avoid unnecessory panic if iommu init fail in tboot
@ 2020-11-04  8:14 Zhenzhong Duan
  2020-11-09  2:27   ` Zhenzhong Duan
  0 siblings, 1 reply; 7+ messages in thread
From: Zhenzhong Duan @ 2020-11-04  8:14 UTC (permalink / raw)
  To: linux-kernel
  Cc: ning.sun, tglx, mingo, bp, x86, jroedel, tboot-devel, Zhenzhong Duan

"intel_iommu=off" command line is used to disable iommu and iommu is force
enabled in a tboot system. Meanwhile "intel_iommu=tboot_noforce,off"
could be used to force disable iommu in tboot for better performance.

By default kernel should panic if iommu init fail in tboot for security
reason, but it's unnecessory if we use "intel_iommu=tboot_noforce,off".

Fix it by return 0 in tboot_force_iommu() so that force_on is not set.

Fixes: 7304e8f28bb2 ("iommu/vt-d: Correctly disable Intel IOMMU force on")
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@gmail.com>
---
 arch/x86/kernel/tboot.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c
index 992fb1415c0f..9fd4d162b331 100644
--- a/arch/x86/kernel/tboot.c
+++ b/arch/x86/kernel/tboot.c
@@ -511,12 +511,9 @@ struct acpi_table_header *tboot_get_dmar_table(struct acpi_table_header *dmar_tb
 
 int tboot_force_iommu(void)
 {
-	if (!tboot_enabled())
+	if (!tboot_enabled() || intel_iommu_tboot_noforce)
 		return 0;
 
-	if (intel_iommu_tboot_noforce)
-		return 1;
-
 	if (no_iommu || swiotlb || dmar_disabled)
 		pr_warn("Forcing Intel-IOMMU to enabled\n");
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-11-09  9:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-04  8:14 [PATCH] iommu/vt-d: avoid unnecessory panic if iommu init fail in tboot Zhenzhong Duan
2020-11-09  2:27 ` Zhenzhong Duan
2020-11-09  2:27   ` Zhenzhong Duan
2020-11-09  3:08   ` Lu Baolu
2020-11-09  3:08     ` Lu Baolu
2020-11-09  9:12     ` Zhenzhong Duan
2020-11-09  9:12       ` Zhenzhong Duan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.