Re: [PATCH v2 04/12] gpu: nova-core: mm: Add VramAddress type
"Danilo Krummrich" <[email protected]>
| Newsgroups | org.kernel.vger.linux-doc,dev.linux.lists.nova-gpu,org.freedesktop.lists.dri-devel,org.kernel.vger.linux-kernel,org.kernel.vger.rust-for-linux |
|---|---|
| Message-ID | <[email protected]> |
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