Re: [PATCH v3 1/4] rust: acpi: add `acpi::DeviceId` abstraction
From: Danilo Krummrich
Date: Sun Jun 08 2025 - 06:43:12 EST
On Sun, Jun 08, 2025 at 09:48:00AM +0200, Benno Lossin wrote:
> On Fri Jun 6, 2025 at 7:06 PM CEST, Igor Korotin wrote:
> > +impl DeviceId {
> > + const ACPI_ID_LEN: usize = 16;
> > +
> > + /// Create a new device id from an ACPI 'id' string.
> > + pub const fn new(id: &'static CStr) -> Self {
> > + assert!(id.len() <= Self::ACPI_ID_LEN, "ID exceeds 16 bytes");
> > + let src = id.as_bytes_with_nul();
> > + // Replace with `bindings::acpi_device_id::default()` once stabilized for `const`.
> > + // SAFETY: FFI type is valid to be zero-initialized.
> > + let mut acpi: bindings::acpi_device_id = unsafe { core::mem::zeroed() };
>
> This can be made safe using this series:
>
> https://lore.kernel.org/all/20250523145125.523275-1-lossin@xxxxxxxxxx
Indeed, I did not mention this though since I think this series should not
depend on the one above. They'll land through different trees and the
improvement can still be made later on.