public inbox for rust-for-linux@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-01-08 13:21:47 to 2026-01-11 17:04:03 UTC [more...]

[PATCH v2 00/11] refactor Rust proc macros with `syn`
 2026-01-11 17:03 UTC  (7+ messages)
` [PATCH v2 03/11] rust: macros: convert `#[vtable]` macro to use `syn`

[PATCH v8] rust: add new macro for common bitflag operations
 2026-01-11 13:32 UTC 

[PATCH v2 00/15] `syn` rewrite of pin-init
 2026-01-11 12:25 UTC  (16+ messages)
` [PATCH v2 01/15] rust: pin-init: remove `try_` versions of the initializer macros
` [PATCH v2 02/15] rust: pin-init: allow the crate to refer to itself as `pin-init` in doc tests
` [PATCH v2 03/15] rust: pin-init: add `syn` dependency and remove `proc-macro[2]` and `quote` workarounds
` [PATCH v2 04/15] rust: pin-init: internal: add utility API for syn error handling
` [PATCH v2 05/15] rust: pin-init: rewrite `derive(Zeroable)` and `derive(MaybeZeroable)` using `syn`
` [PATCH v2 06/15] rust: pin-init: rewrite the `#[pinned_drop]` attribute macro "
` [PATCH v2 07/15] rust: pin-init: rewrite `#[pin_data]` "
` [PATCH v2 08/15] rust: pin-init: add `?Sized` bounds to traits in `#[pin_data]` macro
` [PATCH v2 09/15] rust: pin-init: rewrite the initializer macros using `syn`
` [PATCH v2 10/15] rust: pin-init: add `#[default_error(<type>)]` attribute to initializer macros
` [PATCH v2 11/15] rust: init: use `#[default_error(err)]` for the "
` [PATCH v2 12/15] rust: pin-init: internal: init: add support for attributes on initializer fields
` [PATCH v2 13/15] rust: pin-init: internal: init: add escape hatch for referencing initialized fields
` [PATCH v2 14/15] rust: pin-init: internal: init: simplify Zeroable safety check
` [PATCH v2 15/15] MAINTAINERS: add Gary Guo to pin-init

[GIT PULL][PATCH 00/36] Rust synchronization changes for v7.0
 2026-01-11 12:02 UTC  (37+ messages)
` [PATCH 01/36] rust: sync: Refactor static_lock_class!() macro
` [PATCH 02/36] rust: sync: Clean up LockClassKey and its docs
` [PATCH 03/36] rust: sync: set_once: Implement Send and Sync
  ` [PATCH 04/36] rust: sync: Implement Unpin for ARef
  ` [PATCH 05/36] rust: helpers: Add i8/i16 atomic_read_acquire/atomic_set_release helpers
  ` [PATCH 06/36] rust: helpers: Add i8/i16 relaxed atomic helpers
  ` [PATCH 07/36] rust: helpers: Add i8/i16 atomic xchg helpers
  ` [PATCH 08/36] rust: helpers: Add i8/i16 atomic xchg_acquire helpers
  ` [PATCH 09/36] rust: helpers: Add i8/i16 atomic xchg_release helpers
  ` [PATCH 10/36] rust: helpers: Add i8/i16 atomic xchg_relaxed helpers
  ` [PATCH 11/36] rust: helpers: Add i8/i16 atomic try_cmpxchg helpers
  ` [PATCH 12/36] rust: helpers: Add i8/i16 atomic try_cmpxchg_acquire helpers
  ` [PATCH 13/36] rust: helpers: Add i8/i16 atomic try_cmpxchg_release helpers
  ` [PATCH 14/36] rust: helpers: Add i8/i16 atomic try_cmpxchg_relaxed helpers
  ` [PATCH 15/36] rust: sync: atomic: Prepare AtomicOps macros for i8/i16 support
  ` [PATCH 16/36] arch: um/x86: Select ARCH_SUPPORTS_ATOMIC_RMW for UML_X86
  ` [PATCH 17/36] rust: sync: atomic: Add i8/i16 load and store support
  ` [PATCH 18/36] rust: sync: atomic: Add store_release/load_acquire tests
  ` [PATCH 19/36] rust: sync: atomic: Add i8/i16 xchg and cmpxchg support
  ` [PATCH 20/36] rust: sync: atomic: Add atomic bool support via i8 representation
  ` [PATCH 21/36] rust: sync: atomic: Add atomic bool tests
  ` [PATCH 22/36] rust: list: Switch to kernel::sync atomic primitives
  ` [PATCH 23/36] rust_binder: "
  ` [PATCH 24/36] rust: barrier: Add __rust_helper to helpers
  ` [PATCH 25/36] rust: blk: "
  ` [PATCH 26/36] rust: completion: "
  ` [PATCH 27/36] rust: cpu: "
  ` [PATCH 28/36] rust: processor: "
  ` [PATCH 29/36] rust: rcu: "
  ` [PATCH 30/36] rust: refcount: "
  ` [PATCH 31/36] rust: sync: "
  ` [PATCH 32/36] rust: task: "
  ` [PATCH 33/36] rust: time: "
  ` [PATCH 34/36] rust: wait: "
  ` [PATCH 35/36] rust: helpers: Move #define __rust_helper out of atomic.c
  ` [PATCH 36/36] rust: sync: Inline various lock related methods

[PATCH 00/13] `syn` rewrite of pin-init
 2026-01-11 10:04 UTC  (40+ messages)
` [PATCH 01/12] rust: pin-init: remove `try_` versions of the initializer macros
` [PATCH 02/12] rust: pin-init: allow the crate to refer to itself as `pin-init` in doc tests
` [PATCH 03/12] rust: pin-init: add `syn` dependency and remove `proc-macro[2]` and `quote` workarounds
` [PATCH 04/12] rust: pin-init: rewrite `derive(Zeroable)` and `derive(MaybeZeroable)` using `syn`
` [PATCH 05/12] rust: pin-init: rewrite the `#[pinned_drop]` attribute macro "
` [PATCH 06/12] rust: pin-init: rewrite `#[pin_data]` "
` [PATCH 07/12] rust: pin-init: add `?Sized` bounds to traits in `#[pin_data]` macro
` [PATCH 08/12] rust: pin-init: rewrite the initializer macros using `syn`
` [PATCH 09/12] rust: pin-init: add `#[default_error(<type>)]` attribute to initializer macros
` [PATCH 10/12] rust: init: use `#[default_error(err)]` for the "
` [PATCH 11/12] rust: pin-init: internal: init: add support for attributes on initializer fields
` [PATCH 12/12] rust: pin-init: internal: init: add escape hatch for referencing initialized fields
` [PATCH 13/13] MAINTAINERS: add Gary Guo to pin-init

[PATCH v2] rust: sync: atomic: Add i32-backed Flag for atomic booleans
 2026-01-11  5:11 UTC  (8+ messages)

[PATCH v3 0/2] rust: sync: atomic flag helpers
 2026-01-11  5:05 UTC  (3+ messages)
` [PATCH v3 1/2] rust: sync: atomic: Add i32-backed Flag for atomic booleans
` [PATCH v3 2/2] rust: sync: atomic: Add AtomicFlag bool wrapper for easier use

[PATCH v2 0/2] rust: take advantage of newer rust-analyzer features
 2026-01-11  2:24 UTC  (6+ messages)
` [PATCH v2 1/2] scripts: generate_rust_analyzer: add versioning infrastructure
` [PATCH v2 2/2] scripts: generate_rust_analyzer: fix IDE support for primitive types

[GIT PULL] Driver core fixes for 6.19-rc5
 2026-01-10 20:40 UTC 

[PATCH RFC v3 00/15] rust: Reimplement ThisModule to fix ownership problems
 2026-01-10 15:08 UTC  (16+ messages)
` [PATCH RFC v3 01/15] rust: enable const_refs_to_static feature
` [PATCH RFC v3 02/15] rust: add new ThisModule trait and THIS_MODULE impl
` [PATCH RFC v3 03/15] rust: miscdevice: fix use after free because missing .owner
` [PATCH RFC v3 04/15] rust: block: fix missing owner field in block_device_operations
` [PATCH RFC v3 05/15] rust: drm: fix missing owner in file_operations
` [PATCH RFC v3 06/15] rust: configfs: use new THIS_MODULE
` [PATCH RFC v3 07/15] rust: binder: "
` [PATCH RFC v3 08/15] rust: firmware: use THIS_MODULE over LocalModule for name
` [PATCH RFC v3 09/15] gpu: nova-core: "
` [PATCH RFC v3 10/15] samples: rust: auxiliary: "
` [PATCH RFC v3 11/15] rust: driver: make RegistrationOps::register() to use new ThisModule
` [PATCH RFC v3 12/15] rust: phy: make Registration::register() "
` [PATCH RFC v3 13/15] rust: remove module argument from InPlaceModule::init()
` [PATCH RFC v3 14/15] rust: remove kernel::ModuleMetadata
` [PATCH RFC v3 15/15] rust: remove old version of ThisModule

[PATCH v1] rust: hrtimer: Restrict expires() to safe contexts
 2026-01-10 11:58 UTC 

[PATCH] rust: platform: fix remove_callback invariant comment
 2026-01-10 11:51 UTC 

[PATCH] rust: auxiliary: fix remove_callback invariant comment
 2026-01-10 11:48 UTC 

[PATCH 1/2] rust: syn: make rust-analyzer treat `std` as a dependency
 2026-01-09 23:08 UTC  (10+ messages)
` [PATCH 2/2] rust: quote: make rust-analyzer treat `core` and `std` as dependencies

[PATCH v5 00/11] gpu: nova-core: add Turing support
 2026-01-09 19:13 UTC  (10+ messages)
` [PATCH v5 08/11] gpu: nova-core: add Falcon HAL method supports_dma()
` [PATCH v5 09/11] gpu: nova-core: add FalconUCodeDescV2 support
` [PATCH v5 10/11] gpu: nova-core: align LibosMemoryRegionInitArgument size to page size

[PATCH 00/10] rust: xarray: add entry API with preloading
 2026-01-09 17:04 UTC  (27+ messages)
` [PATCH 03/10] rust: xarray: add `contains_index` method
` [PATCH 04/10] rust: xarray: add `XArrayState`
` [PATCH 06/10] rust: xarray: simplify `Guard::load`
` [PATCH 08/10] rust: xarray: add entry API

[PATCH v3 0/2] rust: add new workqueue functions
 2026-01-09 16:32 UTC  (5+ messages)
` [PATCH v3 2/2] rust: add system_percpu() around the new system_percpu_wq

[PATCH 0/5] Add READ_ONCE and WRITE_ONCE to Rust
 2026-01-09 12:00 UTC  (11+ messages)

[PATCH 0/3] rust: WMI abstractions
 2026-01-09 11:31 UTC  (16+ messages)
` [PATCH 2/3] rust: implement wrapper for acpi_object
` [PATCH 3/3] rust: add WMI abstractions

[PATCH] rust: device: add platdata accessors
 2026-01-09 11:08 UTC  (4+ messages)
` [PATCH v2 v2 0/1] Implement generic accessors for the platform data of a device
  ` [PATCH v2 v2 1/1] rust: device: add platdata accessors

[PATCH 4/5] rust: hrtimer: use READ_ONCE instead of read_volatile
 2026-01-09 10:42 UTC  (4+ messages)

[RFC PATCH v2 0/5] rust: Add RTC driver support
 2026-01-08 23:31 UTC  (14+ messages)
` [RFC PATCH v2 1/5] rtc: migrate driver data to RTC device
` [RFC PATCH v2 4/5] rust: add RTC core abstractions and data structures

[PATCH v2 1/2] gpu: nova-core: check for overflow to DMATRFBASE1
 2026-01-08 23:22 UTC  (5+ messages)
` [PATCH v2 2/2] gpu: nova-core: add missing newlines to several print strings

[PATCH v2 0/3] Rust GPUVM prerequisites
 2026-01-08 17:24 UTC  (6+ messages)
` [PATCH v2 1/3] drm/gpuvm: take GEM lock inside drm_gpuvm_bo_obtain_prealloc()
` [PATCH v2 2/3] drm/gpuvm: drm_gpuvm_bo_obtain() requires lock and staged mode
` [PATCH v2 3/3] drm/gpuvm: use const for drm_gpuva_op_* ptrs

[PATCH v26 00/28] riscv control-flow integrity for usermode
 2026-01-08 16:25 UTC  (5+ messages)

[PATCH v2] rust: acpi: replace manual zero-initialization with `pin_init::zeroed()`
 2026-01-08 14:23 UTC  (5+ messages)

[PATCH v3 0/3] Clk improvements
 2026-01-08 14:18 UTC  (6+ messages)
` [PATCH v3 1/3] rust: clk: use the type-state pattern

[PATCH 1/2] gpu: nova-core: check for overflow to DMATRFBASE1
 2026-01-08 14:13 UTC  (8+ messages)
` [PATCH 2/2] gpu: nova-core: add missing newlines to several print strings

[PATCH] scripts: atomic: check for argument in gen-rust-atomic-helpers.sh
 2026-01-08 13:54 UTC  (2+ messages)

hid-asus: integration of some rust code
 2026-01-08 13:36 UTC 


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