public inbox for rust-for-linux@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-01-19 23:35:33 to 2026-01-21 07:24:22 UTC [more...]

[PATCH v2 0/5] rust: add `register!` macro
 2026-01-21  7:23 UTC  (2+ messages)
` [PATCH v2 1/5] rust: enable the `generic_arg_infer` feature

[PATCH 0/6] rust: add `bitfield!` and `register!` macros
 2026-01-21  6:55 UTC  (29+ messages)
` [PATCH 1/6] rust: num: add `shr` and `shl` methods to `Bounded`
` [PATCH 2/6] rust: num: add `as_bool` method to `Bounded<_, 1>`
` [PATCH 3/6] rust: add `bitfield!` macro
` [PATCH 4/6] rust: bitfield: Add KUNIT tests for bitfield
` [PATCH 5/6] rust: io: add `register!` macro
` [PATCH FOR REFERENCE 6/6] gpu: nova-core: use the kernel `register!` and `bitfield!` macros

[PATCH 1/4] rust: device: support `dev_printk` on all devices
 2026-01-21  6:52 UTC  (6+ messages)
` [PATCH 2/4] rust: samples: remove redundant `.as_ref()` for `dev_*` print
` [PATCH 3/4] gpu: nova-core: "
` [PATCH 4/4] gpu: tyr: "

[PATCH v10 0/1] rust: Add safe pointer formatting support
 2026-01-21  5:00 UTC  (2+ messages)
` [PATCH v10 1/1] rust: fmt: add "

[PATCH v4 0/4] rust: add `TryFrom` and `Into` derive macros
 2026-01-21  3:20 UTC  (8+ messages)
` [PATCH v4 1/4] rust: macros: add derive macro for `Into`

[PATCH net-next] net: remove HIPPI support and RoadRunner HIPPI driver
 2026-01-21  3:20 UTC  (2+ messages)

[PATCH] rust: sync: replace `kernel::c_str!` with C-Strings
 2026-01-21  1:09 UTC  (3+ messages)

[PATCH 0/5] Add READ_ONCE and WRITE_ONCE to Rust
 2026-01-21  0:47 UTC  (3+ messages)
` [PATCH 5/5] rust: fs: use READ_ONCE instead of read_volatile

[PATCH v26 00/28] riscv control-flow integrity for usermode
 2026-01-21  1:32 UTC  (5+ messages)

[PATCH v2 0/2] rust: reduce duplicate information
 2026-01-21  1:16 UTC  (5+ messages)
` [PATCH v2 1/2] rust: kbuild: extract configs for reuse
` [PATCH v2 2/2] scripts: generate_rust_analyzer.py: reduce cfg plumbing

[PATCH v6 00/11] gpu: nova-core: add Turing support
 2026-01-21  0:25 UTC  (4+ messages)
` [PATCH v6 11/11] gpu: nova-core: add PIO support for loading firmware images

[PATCH 0/6] scripts: generate_rust_analyzer: improve rust-project.json generation
 2026-01-21  0:01 UTC  (16+ messages)
` [PATCH 1/6] scripts: generate_rust_analyzer: rename cfg to generated_cfg
` [PATCH 2/6] scripts: generate_rust_analyzer: plumb editions via command line
` [PATCH 3/6] scripts: generate_rust_analyzer: plumb crate-attrs
` [PATCH 4/6] scripts: generate_rust_analyzer: plumb common crate-attrs for non-host crates
` [PATCH 5/6] scripts: generate_rust_analyzer: add pin_init to driver crate deps
` [PATCH 6/6] scripts: generate_rust_analyzer: move sysroot crates to sysroot_project

[PATCH RFC v6 00/26] nova-core: Memory management infrastructure (v6)
 2026-01-20 23:48 UTC  (28+ messages)
` [PATCH RFC v6 01/26] rust: clist: Add support to interface with C linked lists
` [PATCH RFC v6 02/26] gpu: Move DRM buddy allocator one level up
` [PATCH RFC v6 03/26] rust: gpu: Add GPU buddy allocator bindings
` [PATCH RFC v6 04/26] nova-core: mm: Select GPU_BUDDY for VRAM allocation
` [PATCH RFC v6 05/26] nova-core: mm: Add support to use PRAMIN windows to write to VRAM
` [PATCH RFC v6 06/26] docs: gpu: nova-core: Document the PRAMIN aperture mechanism
` [PATCH RFC v6 07/26] nova-core: Add BAR1 aperture type and size constant
` [PATCH RFC v6 08/26] nova-core: gsp: Add BAR1 PDE base accessors
` [PATCH RFC v6 09/26] nova-core: mm: Add common memory management types
` [PATCH RFC v6 10/26] nova-core: mm: Add common types for all page table formats
` [PATCH RFC v6 11/26] nova-core: mm: Add MMU v2 page table types
` [PATCH RFC v6 12/26] nova-core: mm: Add MMU v3 "
` [PATCH RFC v6 13/26] nova-core: mm: Add unified page table entry wrapper enums
` [PATCH RFC v6 14/26] nova-core: mm: Add TLB flush support
` [PATCH RFC v6 15/26] nova-core: mm: Add GpuMm centralized memory manager
` [PATCH RFC v6 16/26] nova-core: mm: Add page table walker for MMU v2
` [PATCH RFC v6 17/26] nova-core: mm: Add Virtual Memory Manager
` [PATCH RFC v6 18/26] nova-core: mm: Add virtual address range tracking to VMM
` [PATCH RFC v6 19/26] nova-core: mm: Add BAR1 user interface
` [PATCH RFC v6 20/26] nova-core: gsp: Return GspStaticInfo and FbLayout from boot()
` [PATCH RFC v6 21/26] nova-core: mm: Add memory management self-tests
` [PATCH RFC v6 22/26] nova-core: mm: Add PRAMIN aperture self-tests
` [PATCH RFC v6 23/26] nova-core: gsp: Extract usable FB region from GSP
` [PATCH RFC v6 24/26] nova-core: fb: Add usable_vram field to FbLayout
` [PATCH RFC v6 25/26] nova-core: mm: Use usable VRAM region for buddy allocator
` [PATCH RFC v6 26/26] nova-core: mm: Add BarUser to struct Gpu and create at boot

[PATCH v2 0/2] rust: sync: Atomic pointer
 2026-01-20 22:45 UTC  (6+ messages)
` [PATCH v2 1/2] rust: sync: atomic: Clarify the need of CONFIG_ARCH_SUPPORTS_ATOMIC_RMW
` [PATCH v2 2/2] rust: sync: atomic: Add Atomic<*{mut,const} T> support

[PATCH 0/2] Provide Rust atomic helpers over raw pointers
 2026-01-20 20:52 UTC  (15+ messages)
` [PATCH 1/2] rust: sync: atomic: Remove bound `T: Sync` for `Atomci::from_ptr()`
` [PATCH 2/2] rust: sync: atomic: Add atomic operation helpers over raw pointers

[PATCH] rust: replace `kernel::c_str!` with C-Strings in seq_file and device
 2026-01-20 21:11 UTC  (6+ messages)

[PATCH v2 0/2] Clean up Rust LockClassKey
 2026-01-20 21:05 UTC  (5+ messages)
` [PATCH v2 2/2] rust: sync: clean up LockClassKey and its docs

[PATCH] rust: macros: add if_cfg! macro for config-based conditionals
 2026-01-20 20:04 UTC  (3+ messages)

[PATCH v3 0/2] scripts: introduce containerized builds
 2026-01-20 18:39 UTC  (13+ messages)
` [PATCH v3 2/2] Documentation: dev-tools: add container.rst page

[PATCH v5 0/8] gpu: nova-core: expose the logging buffers via debugfs
 2026-01-20 18:19 UTC  (4+ messages)
` [PATCH v5 2/8] rust: debugfs: add Dir::empty() for conditional debugfs usage

[PATCH v2 00/27] Allow inlining C helpers into Rust when using LTO
 2026-01-20 18:02 UTC  (3+ messages)
` [PATCH v2 14/27] rust: pwm: add __rust_helper to helpers

[PATCH v2 0/2] rust: pwm: Fix init error handling and tidy style
 2026-01-20 17:59 UTC  (2+ messages)

[PATCH v10 0/5] rust: pci: add config space read/write support
 2026-01-20 17:35 UTC  (16+ messages)
` [PATCH v10 1/5] rust: devres: style for imports
` [PATCH v10 2/5] rust: io: separate generic I/O helpers from MMIO implementation

[PATCH] drivers: pwm: replace `kernel::c_str!` with C-Strings
 2026-01-20 16:15 UTC  (3+ messages)

[PATCH v1] rust: time: Add Delta range constants for time units
 2026-01-20 16:09 UTC  (2+ messages)

[PATCH v2 0/7] rust: Replace unsafe core::mem::zeroed() with pin_init::zeroed()
 2026-01-20 16:04 UTC  (9+ messages)
` [PATCH v2 1/7] rust: auxiliary: use pin_init::zeroed() instead of unsafe zeroed
` [PATCH v2 2/7] rust: block: mq: use pin_init::zeroed() for queue_limits
` [PATCH v2 3/7] rust: block: mq: use pin_init::zeroed() for tag_set
` [PATCH v2 4/7] rust: debugfs: use pin_init::zeroed() for file_operations
` [PATCH v2 5/7] rust: of: use pin_init::zeroed() instead of unsafe zeroed
` [PATCH v2 6/7] rust: pwm: use pin_init::zeroed() for pwm_ops
` [PATCH v2 7/7] rust: security: use pin_init::zeroed() for lsm_context

[PATCH 0/5] rust: sync: Atomic pointer and RCU
 2026-01-20 14:07 UTC  (8+ messages)
` [PATCH 4/5] rust: sync: atomic: Add Atomic<*mut T> support

[PATCH v2 0/1] rust: simplify `Adapter::id_info`
 2026-01-20 16:00 UTC  (8+ messages)
` [PATCH v2 1/1] "

[PATCH v9 0/4] rust: Add safe pointer formatting support
 2026-01-20 15:39 UTC  (8+ messages)
` [PATCH v9 3/4] rust: fmt: make raw pointers default to HashedPtr
` [PATCH v9 4/4] rust: fmt: add RawPtr for debugging pointer formatting

[PATCH 1/2] MAINTAINERS: Add driver-core mailing list
 2026-01-20 14:56 UTC  (4+ messages)
` [PATCH 2/2] MAINTAINERS: Add missing T: entry for FIRMWARE LOADER

[PATCH 0/4] rust: Add ARef support for work items
 2026-01-20 14:41 UTC  (8+ messages)
` [PATCH 2/4] rust: drm: dispatch work items to the private data
` [PATCH 4/4] rust: drm: dispatch delayed "

[PATCH v1] rust: list: Use AtomicFlag in AtomicTracker
 2026-01-20 13:54 UTC  (2+ messages)

[PATCH v1] rust: hrtimer: Restrict expires() to safe contexts
 2026-01-20 13:43 UTC  (7+ messages)

[PATCH v4] rust_binder: refactor context management to use KVVec
 2026-01-20 13:41 UTC 

[PATCH 0/2] rust: kernel: add missing safety documentation
 2026-01-20 12:58 UTC  (3+ messages)
` [PATCH 1/2] rust: kernel: document safety for rust_fmt_argument

[PATCH v2] Makefile: Remove the product of pin_init cleanly in mrporper
 2026-01-20 11:13 UTC  (3+ messages)

[PATCH] drm/tyr: rename pad0 to selected_coherency
 2026-01-20 10:37 UTC  (2+ messages)

[PATCH v2] drm/tyr: use read_poll_timeout
 2026-01-20  9:08 UTC  (3+ messages)

[PATCH] rust: drm: tyr: Fix register name in error print
 2026-01-20  9:08 UTC  (4+ messages)

[PATCH v4 0/3] Implement Send and Sync for clk
 2026-01-20  8:48 UTC  (4+ messages)
  ` [PATCH v4 3/3] pwm: th1520: remove impl Send/Sync for Th1520PwmDriverData

[RFC PATCH v3 0/5] rust: Add RTC driver support
 2026-01-20  8:01 UTC  (4+ messages)
` [RFC PATCH v3 1/5] rtc: add device selector for rtc_class_ops callbacks

[PATCH v2] rust_binder: refactor context management to use KVVec
 2026-01-20  7:55 UTC  (3+ messages)
` [PATCH v3] "

[PATCH v4 1/2] rust: sync: atomic: Add performance-optimal-integer-backed Flag for atomic booleans
 2026-01-20  2:56 UTC  (5+ messages)

[PATCH 0/2] DRM 'feature' support for DRM drivers
 2026-01-19 23:34 UTC  (2+ messages)
` [PATCH 2/2] rust: drm: add FeatureRender


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox