base: bump submodule — acpi-rs stub elimination + UAS transport + virtio arch fixes

acpi-rs: all ~20 resource descriptor stubs eliminated (ACPI 6.5 §6.4),
ConnectionField/Match/Index-ref stubs in mod.rs eliminated (6571df78)

driver-manager: add pid_to_device tracking map
This commit is contained in:
2026-07-22 05:06:05 +09:00
parent b44f4fc3e9
commit b058338efd
2 changed files with 3 additions and 1 deletions
@@ -37,6 +37,7 @@ pub struct DriverConfig {
pub matches: Vec<DriverMatch>,
pub depends_on: Vec<String>,
spawned: Mutex<HashMap<String, SpawnedDriver>>,
pid_to_device: Mutex<HashMap<u32, String>>,
}
impl Clone for DriverConfig {
@@ -434,6 +435,7 @@ impl DriverConfig {
matches,
depends_on: driver.depends_on,
spawned: Mutex::new(HashMap::new()),
pid_to_device: Mutex::new(HashMap::new()),
});
}
}