rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-09-04 13:30:51 to 2025-09-07 22:31:50 UTC [more...]

[PATCH] rust: task: update ARef and AlwaysRefCounted imports from sync::aref
 2025-09-07 22:31 UTC  (3+ messages)

[PATCH] rust: prelude: re-export `core::mem::{align,size}_of{,_val}`
 2025-09-07 22:30 UTC  (2+ messages)

[PATCH v3 0/1] rust: update error.rs documentation
 2025-09-07 22:30 UTC  (2+ messages)

[PATCH 0/3] Fix broken `srctree/` links and warn about them
 2025-09-07 22:29 UTC  (2+ messages)

[PATCH] rust: sync: Update ARef and AlwaysRefCounted imports from sync::aref
 2025-09-07 22:29 UTC  (2+ messages)

[GIT PULL] Rust ALLOC & DMA for v6.18
 2025-09-07 22:28 UTC  (2+ messages)

[PATCH] rust: pin-init: add references to previously initialized fields
 2025-09-07 21:39 UTC  (13+ messages)

[PATCH] rust: kunit: allow `cfg` on `test`s
 2025-09-07 20:15 UTC 

[PATCH] rust: kernel: cpu: mark `CpuId::current()` inline
 2025-09-07 19:22 UTC  (2+ messages)

[PATCH v2 0/4] Improve bitfield support in Rust
 2025-09-07 18:14 UTC  (9+ messages)
` [PATCH v2 2/4] nova-core: bitstruct: Add support for different storage widths
` [PATCH v2 3/4] nova-core: bitstruct: Add support for custom visiblity
` [PATCH v2 4/4] rust: Move register and bitstruct macros out of Nova

[PATCH] rust: pin-init: add code blocks to `[try_][pin_]init!` macros
 2025-09-07 17:17 UTC  (6+ messages)

[PATCH v4 00/16] dma-mapping: migrate to physical address-based API
 2025-09-07 14:25 UTC  (8+ messages)
  ` [PATCH v4 03/16] dma-debug: refactor to use physical addresses for page mapping

[PATCH 0/2] Defer vm_bo cleanup in GPUVM with DRM_GPUVM_IMMEDIATE_MODE
 2025-09-07 11:44 UTC  (12+ messages)
` [PATCH 1/2] drm/gpuvm: add deferred vm_bo cleanup
` [PATCH 2/2] panthor: use drm_gpuva_unlink_defer()

[PATCH 0/2] rust: replace wq users and add WQ_PERCPU to alloc_workqueue() users
 2025-09-07 10:59 UTC  (6+ messages)
` [PATCH 1/2] rust: replace use of system_unbound_wq with system_dfl_wq
` [PATCH 2/2] rust: replace use of system_wq with system_percpu_wq

[PATCH v6 0/7] rust: add `ww_mutex` support
 2025-09-07  8:38 UTC  (21+ messages)
` [PATCH v6 3/7] rust: implement `WwMutex`, `WwAcquireCtx` and `WwMutexGuard`
` [PATCH v6 4/7] add KUnit coverage on Rust ww_mutex implementation
` [PATCH v6 5/7] rust: ww_mutex: add context-free locking functions
` [PATCH v6 6/7] rust: ww_mutex/exec: add high-level API
` [PATCH v6 7/7] add KUnit coverage on ww_mutex/exec implementation

[GIT PULL] Rust fixes for 6.17 (2nd)
 2025-09-06 19:49 UTC  (2+ messages)

[PATCH 0/2] rust: usb: add initial USB abstractions
 2025-09-06 15:48 UTC  (14+ messages)
` [PATCH 2/2] samples: rust: add a USB driver sample

[RFC PATCH v3 0/5] rust: miscdevice: abstraction for uring_cmd
 2025-09-06 14:28 UTC  (6+ messages)
` [RFC PATCH v3 2/5] io_uring/cmd: zero-init pdu in io_uring_cmd_prep() to avoid UB

[PATCH v15 0/5] rust: adds Bitmap API, ID pool and bindings
 2025-09-06 14:27 UTC  (17+ messages)
` [PATCH v15 1/5] rust: add bindings for bitmap.h
` [PATCH v15 2/5] rust: add bindings for bitops.h
` [PATCH v15 3/5] rust: add bitmap API
` [PATCH v15 4/5] rust: add find_bit_benchmark_rust module
` [PATCH v15 5/5] rust: add dynamic ID pool abstraction for bitmap

[PATCH v2] rust: rbtree: add immutable cursor
 2025-09-06 14:02 UTC 

[PATCH v5 0/5] Rust support for `struct iov_iter`
 2025-09-06 11:23 UTC  (2+ messages)

[PATCH v4 0/2] rust: zpool: add abstraction for zpool drivers
 2025-09-06  7:56 UTC  (11+ messages)
` [PATCH v4 2/2] "

[GIT PULL] [PATCH 00/14] Rust atomic changes for v6.18
 2025-09-06  4:26 UTC  (29+ messages)
` [PATCH 01/14] rust: Introduce atomic API helpers
` [PATCH 02/14] rust: sync: Add basic atomic operation mapping framework
` [PATCH 03/14] rust: sync: atomic: Add ordering annotation types
` [PATCH 04/14] rust: sync: atomic: Add generic atomics
` [PATCH 05/14] rust: sync: atomic: Add atomic {cmp,}xchg operations
` [PATCH 06/14] rust: sync: atomic: Add the framework of arithmetic operations
` [PATCH 07/14] rust: sync: atomic: Add Atomic<u{32,64}>
` [PATCH 08/14] rust: sync: atomic: Add Atomic<{usize,isize}>
` [PATCH 09/14] rust: sync: Add memory barriers
` [PATCH 10/14] rust: implement `kernel::sync::Refcount`
` [PATCH 11/14] rust: make `Arc::into_unique_or_drop` associated function
` [PATCH 12/14] rust: convert `Arc` to use `Refcount`
` [PATCH 13/14] rust: block: convert `block::mq` "
` [PATCH 14/14] MAINTAINERS: update atomic infrastructure entry to include Rust

[PATCH v11 0/7] rust: DebugFS Bindings
 2025-09-06  3:19 UTC  (10+ messages)
` [PATCH v11 1/7] rust: debugfs: Add initial support for directories
` [PATCH v11 2/7] rust: debugfs: Add support for read-only files
` [PATCH v11 3/7] rust: debugfs: Add support for writable files
` [PATCH v11 4/7] rust: debugfs: Add support for callback-based files
` [PATCH v11 5/7] samples: rust: Add debugfs sample driver
` [PATCH v11 6/7] rust: debugfs: Add support for scoped directories
` [PATCH v11 7/7] samples: rust: Add scoped debugfs sample driver

[PATCH 1/2] nova-core: Add a library for bitfields in Rust structs
 2025-09-06  1:58 UTC  (10+ messages)

[PATCH] rust: rbtree: add immutable cursor
 2025-09-05 19:43 UTC  (7+ messages)

[PATCH 1/2] rust: pin-init: rename `project` -> `project_this` in doctest
 2025-09-05 17:12 UTC  (2+ messages)
` [PATCH 2/2] rust: pin-init: add pin projections to `#[pin_data]`

[PATCH v3 00/14] Rust abstractions for shmem-backed GEM objects
 2025-09-05 17:04 UTC  (17+ messages)
` [PATCH v3 07/14] drm/gem/shmem: Extract drm_gem_shmem_init() from drm_gem_shmem_create()
` [PATCH v3 08/14] drm/gem/shmem: Extract drm_gem_shmem_release() from drm_gem_shmem_free()
` [PATCH v3 09/14] rust: gem: Introduce DriverObject::Args
` [PATCH v3 10/14] rust: drm: gem: shmem: Add DRM shmem helper abstraction
` [PATCH v3 11/14] rust: drm: gem: Introduce SGTableRef
` [PATCH v3 12/14] rust: Add dma_buf stub bindings
` [PATCH v3 13/14] rust: drm: gem: Add export() callback
` [PATCH v3 14/14] rust: drm: gem: Add BaseObject::prime_export()

[PATCH v5 00/16] dma-mapping: migrate to physical address-based API
 2025-09-05 16:50 UTC  (4+ messages)
  ` [PATCH v5 07/16] dma-mapping: convert dma_direct_*map_page to be phys_addr_t based

RISC-V: Re-enable GCC+Rust builds
 2025-09-05 15:25 UTC  (7+ messages)
  ` [PATCH 1/2] rust: get the version of libclang used by bindgen in a separate script
    ` [PATCH 2/2] RISC-V: re-enable gcc + rust builds

[PATCH 0/2] pin-init sync v6.18
 2025-09-05 13:40 UTC  (4+ messages)
` [PATCH 1/2] rust: pin-init: examples: error: use `Error` in `fn main()`
` [PATCH 2/2] rust: pin-init: README: add information banner on the rename to `pin-init`

[PATCH] MAINTAINERS: Add drm-rust tree for Rust DRM drivers and infrastructure
 2025-09-05  7:19 UTC  (5+ messages)

[PATCH v3 0/7] rust: Add Per-CPU Variable API
 2025-09-04 21:57 UTC  (20+ messages)
` [PATCH v3 1/7] rust: percpu: introduce a rust API for per-CPU variables
` [PATCH v3 4/7] rust: cpumask: Add getters for globally defined cpumasks
` [PATCH v3 5/7] rust: percpu: Support non-zeroable types for DynamicPerCpu

[PATCH v4 0/5] Rust infrastructure for sg_table and scatterlist
 2025-09-04 21:48 UTC  (2+ messages)

[PATCH v5 0/7] BorrowedPage, AsPageIter and VmallocPageIter
 2025-09-04 21:47 UTC  (2+ messages)

[PATCH v3 00/11] gpu: nova-core: process and prepare more firmwares to boot GSP
 2025-09-04 15:28 UTC  (10+ messages)
` [PATCH v3 02/11] gpu: nova-core: move GSP boot code out of `Gpu` constructor

[PATCH v2 0/3] Groundwork for Lock<T> when T is pinned
 2025-09-04 15:15 UTC  (4+ messages)
` [PATCH v2 3/3] rust: lock: add a Pin<&mut T> accessor

[PATCH v9 0/7] rust/hrtimer: Various hrtimer + time additions
 2025-09-04 14:59 UTC  (2+ messages)

[PATCH v3 0/2] Arithmetic ops for Instant/Delta
 2025-09-04 14:59 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).