Re: [PATCH 2/8] rust: dma: add generalized container for types other than slices
From: Alice Ryhl
Date: Tue Mar 17 2026 - 02:50:14 EST
On Tue, Mar 03, 2026 at 05:22:53PM +0100, Danilo Krummrich wrote:
> From: Gary Guo <gary@xxxxxxxxxxx>
>
> Currently, `CoherentAllocation` is concecptually a DMA coherent container
> of a slice of `[T]` of runtime-checked length. Generalize it by creating
> `dma::Coherent<T>` which can hold any value of `T`.
> `Coherent::alloc_with_attrs` is implemented but not yet exposed, as I
> believe we should not expose the way to obtain an uninitialized coherent
> region.
>
> `Coherent<[T]>` provides a `len` method instead of the previous `count()`
> method to be consistent with methods on slices.
>
> The existing type is re-defined as a type alias of `Coherent<[T]>` to ease
> transition. Methods in use are not yet removed.
>
> Signed-off-by: Gary Guo <gary@xxxxxxxxxxx>
> Signed-off-by: Danilo Krummrich <dakr@xxxxxxxxxx>
I see you have both `size()` and `len()`. I think it would be clearer to
rename `size()` to `len_bytes()`.
Otherwise LGTM.
Reviewed-by: Alice Ryhl <aliceryhl@xxxxxxxxxx>
Alice