From 2ee3a846fb6d5c322ca7c19d248b9ac81c1923cd Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 22 Nov 2025 17:30:37 -0700 Subject: [PATCH] acpid: do not enter null namespace (workaround for pci) --- acpid/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acpid/src/main.rs b/acpid/src/main.rs index e344468a44..9628e0a7d3 100644 --- a/acpid/src/main.rs +++ b/acpid/src/main.rs @@ -75,7 +75,7 @@ fn daemon(daemon: redox_daemon::Daemon) -> ! { daemon.ready().expect("acpid: failed to notify parent"); - libredox::call::setrens(0, 0).expect("acpid: failed to enter null namespace"); + //TODO: needs to open /scheme/pci/access later! libredox::call::setrens(0, 0).expect("acpid: failed to enter null namespace"); event_queue .subscribe(shutdown_pipe.as_raw_fd() as usize, 0, EventFlags::READ)