Re: [PATCH v2 04/12] gpu: nova-core: mm: Add VramAddress type

From: Danilo Krummrich

Date: Mon Aug 10 2026 - 18:24:38 EST


On Mon Aug 10, 2026 at 3:55 PM CEST, Eliot Courtney wrote:
> +/// Physical VRAM address in GPU video memory.
> +#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
> +#[repr(transparent)]
> +pub(crate) struct VramAddress(u64);

Let's move this into generic code, maybe rust/kernel/gpu/types.rs? I wouldn't
mind doing this as a follow-up though. Will go over the rest of the series soon.

Thanks,
Danilo