messages from 2026-06-25 14:31:35 to 2026-06-28 18:22:49 UTC [more...]
[PATCH RFC 0/4] rust: dma: bridge zerocopy-derived types into the transmute byte-safety bound
2026-06-28 18:21 UTC (6+ messages)
` [PATCH RFC 1/4] rust: transmute: add `impl_transmute_via_zerocopy!` macro
` [PATCH RFC 2/4] rust: prelude: re-export `zerocopy::Immutable`
` [PATCH RFC 3/4] gpu: nova-core: gsp: derive zerocopy traits for the msgq POD types
` [PATCH RFC 4/4] gpu: nova-core: gsp: convert GspMem to zerocopy via the transmute bridge
[PATCH v5 00/19] rust: drm: Higher-Ranked Lifetime private data
2026-06-28 14:53 UTC (20+ messages)
` [PATCH v5 01/19] rust: drm: ioctl: fix unbounded lifetimes in ioctl handler arguments
` [PATCH v5 02/19] rust: drm: rename Uninit DeviceContext to Normal
` [PATCH v5 03/19] rust: faux: add Device type with AsBusDevice support
` [PATCH v5 04/19] rust: drm: Add Driver::ParentDevice associated type
` [PATCH v5 05/19] rust: drm: change default DeviceContext to Normal
` [PATCH v5 06/19] rust: drm: restrict AlwaysRefCounted to Normal Device context
` [PATCH v5 07/19] rust: drm: restrict AlwaysRefCounted to Normal GEM Object context
` [PATCH v5 08/19] rust: drm/gem: remove DeviceContext from shmem::Object
` [PATCH v5 09/19] rust: drm: split Deref for Device context typestates
` [PATCH v5 10/19] rust: drm: pin ioctl Device reference to Normal context
` [PATCH v5 11/19] rust: drm: add Ioctl device context typestate
` [PATCH v5 12/19] rust: drm: Add RegistrationGuard for drm_dev_enter/exit critical sections
` [PATCH v5 13/19] rust: drm: Wrap ioctl dispatch in RegistrationGuard
` [PATCH v5 14/19] rust: drm: return ParentDevice from Device AsRef
` [PATCH v5 15/19] rust: drm: add AsRef<ParentDevice<Bound>> for Device<Registered>
` [PATCH v5 16/19] drm: fix race between partial drm_dev_register() failure and ioctl
` [PATCH v5 17/19] rust: drm: Add RegistrationData to drm::Driver
` [PATCH v5 18/19] rust: drm: Pass registration data to ioctl handlers
` [PATCH v5 19/19] drm: nova: Use drm::Device<Registered> to access the parent bus device
[RESEND PATCH 0/7] drm/nova: replace `transmute` with `zerocopy`
2026-06-28 10:00 UTC (9+ messages)
` [PATCH 1/7] drm/nova: use `zerocopy` in firmware.rs
` [PATCH 2/7] drm/nova: use `zerocopy` in vbios.rs
` [PATCH 3/7] drm/nova: use `zerocopy` in booter.rs
` [PATCH 4/7] drm/nova: use `zerocopy` in fwsec.rs
` [PATCH 5/7] drm/nova: use `zerocopy` in bootloader.rs
` [PATCH 6/7] drm/nova: use `zerocopy` in riscv.rs
` [PATCH 7/7] drm/nova: remove unused trait in commands.rs
[PATCH v4 0/7] ForLt/CovariantForLt split, auxiliary closure API and DevresLt
2026-06-27 14:21 UTC (12+ messages)
` [PATCH v4 1/7] rust: types: rename ForLt to CovariantForLt
` [PATCH v4 2/7] rust: types: introduce ForLt base trait for CovariantForLt
` [PATCH v4 3/7] rust: auxiliary: add registration_data_with() for ForLt types
` [PATCH v4 4/7] rust: auxiliary: sample: demonstrate ForLt with invariant Mutex type
` [PATCH v4 5/7] rust: devres: add DevresLt for ForLt-aware device resource access
` [PATCH v4 6/7] rust: pci: return DevresLt from Bar::into_devres()
` [PATCH v4 7/7] rust: io: mem: return DevresLt from IoMem/ExclusiveIoMem::into_devres()
[PATCH v6 00/10] Fix missing fops.owner in Rust DRM/misc abstractions
2026-06-27 13:10 UTC (12+ messages)
` [PATCH v6 01/10] rust: module: move module types into `module.rs`
` [PATCH v6 07/10] rust: configfs: use `LocalModule` for `THIS_MODULE`
` [PATCH v6 10/10] rust: module: update MAINTAINERS to cover module.rs
[PATCH v7 00/10] Fix missing fops.owner in Rust DRM/misc abstractions
2026-06-27 9:28 UTC (11+ messages)
` [PATCH v7 01/10] rust: module: move module types into `module.rs`
` [PATCH v7 02/10] rust: module: add `THIS_MODULE` const to `ModuleMetadata` trait
` [PATCH v7 03/10] rust: doctest: add LocalModule fallback for #[vtable] ThisModule
` [PATCH v7 04/10] rust: macros: auto-insert OwnerModule in #[vtable]
` [PATCH v7 05/10] rust: drm: set fops.owner from driver module pointer
` [PATCH v7 06/10] rust: miscdevice: "
` [PATCH v7 07/10] rust: configfs: use `LocalModule` for `THIS_MODULE`
` [PATCH v7 08/10] rust: binder: "
` [PATCH v7 09/10] rust: macros: remove `THIS_MODULE` static from `module!`
` [PATCH v7 10/10] rust: module: update MAINTAINERS to cover module.rs
[PATCH v5 00/20] rust: I/O type generalization and projection
2026-06-26 14:45 UTC (21+ messages)
` [PATCH v5 01/20] rust: io: add dynamically-sized `Region` type
` [PATCH v5 02/20] rust: io: add missing safety requirement in `IoCapable` methods
` [PATCH v5 03/20] rust: io: restrict untyped IO access and `register!` to `Region`
` [PATCH v5 04/20] rust: io: implement `Io` on reference types instead
` [PATCH v5 05/20] rust: io: generalize `MmioRaw` to pointer to arbitrary type
` [PATCH v5 06/20] rust: io: rename `Mmio` to `MmioOwned`
` [PATCH v5 07/20] rust: io: implement `Mmio` as view type
` [PATCH v5 08/20] rust: pci: io: make `ConfigSpace` a view
` [PATCH v5 09/20] rust: io: use view types instead of addresses for `Io`
` [PATCH v5 10/20] pwm: th1520: remove unnecessary `deref`
` [PATCH v5 11/20] rust: io: remove `MmioOwned`
` [PATCH v5 12/20] rust: io: move `Io` methods to extension trait
` [PATCH v5 13/20] rust: io: add projection macro and methods
` [PATCH v5 14/20] rust: io: add I/O backend for system memory with volatile access
` [PATCH v5 15/20] rust: io: implement a view type for `Coherent`
` [PATCH v5 16/20] rust: io: add `read_val` and `write_val` functions on `Io`
` [PATCH v5 17/20] gpu: nova-core: use I/O projection for cleaner encapsulation
` [PATCH v5 18/20] rust: dma: drop `dma_read!` and `dma_write!` API
` [PATCH v5 19/20] rust: io: add copying methods
` [PATCH v5 20/20] rust: io: implement `IoSysMap`
[PATCH 0/7] drm/nova: replace `transmute` with `zerocopy`
2026-06-26 13:15 UTC (10+ messages)
` [PATCH 1/7] drm/nova: use `zerocopy` in firmware.rs
` [PATCH 2/7] drm/nova: use `zerocopy` in vbios.rs
` [PATCH 3/7] drm/nova: use `zerocopy` in booter.rs
` [PATCH 4/7] drm/nova: use `zerocopy` in fwsec.rs
` [PATCH 5/7] drm/nova: use `zerocopy` in bootloader.rs
` [PATCH 6/7] drm/nova: use `zerocopy` in riscv.rs
` [PATCH 7/7] drm/nova: remove unused trait in commands.rs
[PATCH v2] gpu: nova-core: falcon: store bar and dev in falcon
2026-06-26 2:24 UTC
[PATCH v2] gpu: nova-core: falcon: store bar and dev in falcon
2026-06-26 2:19 UTC
[PATCH v4 00/16] rust: drm: Higher-Ranked Lifetime private data
2026-06-25 15:12 UTC (5+ messages)
` [PATCH v4 01/16] rust: drm: ioctl: fix unbounded lifetimes in ioctl handler arguments
` [PATCH v4 14/16] rust: drm: Add RegistrationData to drm::Driver
[PATCH v3 0/7] ForLt/CovariantForLt split, auxiliary closure API and DevresLt
2026-06-25 14:31 UTC (3+ messages)
` [PATCH v3 5/7] rust: devres: add DevresLt for ForLt-aware device resource access
page: | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox