From 4da3ceb72331d354ede1d3af3751157f3860d2f0 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 10 Aug 2021 18:25:44 -0600 Subject: [PATCH] Workaround hang on real hardware --- acpid/src/acpi.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acpid/src/acpi.rs b/acpid/src/acpi.rs index f798567873..697d5d445f 100644 --- a/acpid/src/acpi.rs +++ b/acpid/src/acpi.rs @@ -258,7 +258,7 @@ impl AcpiContext { } Fadt::init(&mut this); - Dmar::init(&this); + //TODO (hangs on real hardware): Dmar::init(&this); crate::aml::init_namespace(&this);