rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-06-08 07:48:07 to 2025-06-10 15:19:41 UTC [more...]

[PATCH] rust: types: add FOREIGN_ALIGN to ForeignOwnable
 2025-06-10 15:19 UTC  (6+ messages)

[PATCH] docs: rust: Refactor safety lines docs to sections in cpufreq.rs
 2025-06-10 15:17 UTC 

[PATCH v4 0/5] rust: Add ACPI match table support for Rust drivers
 2025-06-10 15:15 UTC  (7+ messages)
` [PATCH v4 1/5] rust: acpi: add `acpi::DeviceId` abstraction
` [PATCH v4 2/5] rust: driver: Add ACPI id table support to Adapter trait
` [PATCH v4 3/5] rust: driver: Consolidate `Adapter` methods using `#[cfg]`
` [PATCH v4 4/5] rust: platform: Add ACPI match table support to `Driver` trait
` [PATCH v4 5/5] samples: rust: add ACPI match table example to platform driver

[PATCH v6] rust: kernel: add support for bits/genmask macros
 2025-06-10 14:14 UTC 

[PATCH v2] rust: types: add FOREIGN_ALIGN to ForeignOwnable
 2025-06-10 14:15 UTC  (7+ messages)

[PATCH v10 0/6] rust: reduce `as` casts, enable related lints
 2025-06-10 14:13 UTC  (5+ messages)
` [PATCH v10 4/6] rust: enable `clippy::as_underscore` lint

[PATCH 1/2] rust: pin-init: improve safety documentation for `impl<T> [Pin]Init<T> for T`
 2025-06-10 13:44 UTC  (4+ messages)
` [PATCH 2/2] change blanket impls for `[Pin]Init` and add one for `Result<T, E>`

[PATCH v3 0/5] rust: time: Convert hrtimer to use Instant and Delta
 2025-06-10 13:28 UTC  (6+ messages)
` [PATCH v3 1/5] rust: time: Rename Delta's methods from as_* to into_*
` [PATCH v3 2/5] rust: time: Replace HrTimerMode enum with trait-based mode types
` [PATCH v3 3/5] rust: time: Add HrTimerExpires trait
` [PATCH v3 4/5] rust: time: Make HasHrTimer generic over HrTimerMode
` [PATCH v3 5/5] rust: time: Remove Ktime in hrtimer

[PATCH V3 0/3] rust: Introduce CpuId and fix cpumask doctest
 2025-06-10 13:21 UTC  (4+ messages)
` [PATCH V3 1/3] rust: cpu: Introduce CpuId abstraction
` [PATCH V3 2/3] rust: Use CpuId in place of raw CPU numbers
` [PATCH V3 3/3] rust: cpu: Add CpuId::current() to retrieve current CPU ID

[PATCH] rust: math: Add KernelMathExt trait with a mul_div helper
 2025-06-10 13:09 UTC  (3+ messages)

[PATCH] rust: module: remove deprecated author key
 2025-06-10 12:55 UTC  (15+ messages)

[PATCH v2 0/7] Rust Abstractions for PWM subsystem with TH1520 PWM driver
 2025-06-10 12:52 UTC  (8+ messages)
    ` [PATCH v2 1/7] rust: Add basic PWM abstractions
    ` [PATCH v2 2/7] pwm: Add Rust driver for T-HEAD TH1520 SoC
    ` [PATCH v2 3/7] clk: thead: Mark essential bus clocks as CLK_IGNORE_UNUSED
    ` [PATCH v2 4/7] dt-bindings: pwm: thead: Add T-HEAD TH1520 PWM controller
    ` [PATCH v2 5/7] riscv: dts: thead: Add PWM controller node
    ` [PATCH v2 6/7] riscv: dts: thead: Add PVT node
    ` [PATCH v2 7/7] riscv: dts: thead: Add PWM fan and thermal control

[PATCH v2 0/5] rust: time: Convert hrtimer to use Instant and Delta
 2025-06-10 12:12 UTC  (10+ messages)
` [PATCH v2 1/5] rust: time: Rename Delta's methods from as_* to into_*
` [PATCH v2 2/5] rust: time: Replace HrTimerMode enum with trait-based mode types
` [PATCH v2 3/5] rust: time: Add HrTimerExpires trait
` [PATCH v2 4/5] rust: time: Make HasHrTimer generic over HrTimerMode
` [PATCH v2 5/5] rust: time: Remove Ktime in hrtimer

[PATCH] cpufreq: Convert `/// SAFETY` lines to `# Safety` sections
 2025-06-10 11:23 UTC 

[PATCH] rust: vec: impl Default for Vec with any allocator
 2025-06-10 11:04 UTC  (2+ messages)

[PATCH V2 0/2] rust: Introduce CpuId and fix cpumask doctest
 2025-06-10 10:50 UTC  (17+ messages)
` [PATCH V2 1/2] rust: cpu: Introduce CpuId abstraction
` [PATCH V2 2/2] rust: Use CpuId in place of raw CPU numbers

[PATCH v1] rust: time: Fix compile error in impl_has_hr_timer macro
 2025-06-10 10:43 UTC  (6+ messages)

[PATCH v3 0/3] rust: time: Introduce typed clock sources and generalize Instant
 2025-06-10  9:34 UTC  (8+ messages)
` [PATCH v3 1/3] rust: time: Replace ClockId enum with ClockSource trait
` [PATCH v3 2/3] rust: time: Make Instant generic over ClockSource
` [PATCH v3 3/3] rust: time: Add ktime_get() to ClockSource trait

[PATCH v4 0/3] rust: time: Introduce typed clock sources and generalize Instant
 2025-06-10  9:32 UTC  (4+ messages)
` [PATCH v4 1/3] rust: time: Replace ClockId enum with ClockSource trait
` [PATCH v4 2/3] rust: time: Make Instant generic over ClockSource
` [PATCH v4 3/3] rust: time: Add ktime_get() to ClockSource trait

[PATCH v4 00/10] LKMM generic atomics in Rust
 2025-06-10  9:07 UTC  (12+ messages)
` [PATCH v4 01/10] rust: Introduce atomic API helpers
` [PATCH v4 02/10] rust: sync: Add basic atomic operation mapping framework
` [PATCH v4 03/10] rust: sync: atomic: Add ordering annotation types
` [PATCH v4 04/10] rust: sync: atomic: Add generic atomics
` [PATCH v4 05/10] rust: sync: atomic: Add atomic {cmp,}xchg operations
` [PATCH v4 06/10] rust: sync: atomic: Add the framework of arithmetic operations
` [PATCH v4 07/10] rust: sync: atomic: Add Atomic<u{32,64}>
` [PATCH v4 08/10] rust: sync: atomic: Add Atomic<{usize,isize}>
` [PATCH v4 09/10] rust: sync: atomic: Add Atomic<*mut T>
` [PATCH v4 10/10] rust: sync: Add memory barriers

[PATCH] rust: Use consistent "# Examples" heading style in rustdoc
 2025-06-10  9:05 UTC  (5+ messages)

[PATCH V2] rust: Use consistent "# Examples" heading style in rustdoc
 2025-06-10  9:03 UTC 

[PATCH v3] rust: introduce sfile macro for succinct code tracing
 2025-06-10  8:47 UTC  (6+ messages)

[PATCH v4 0/6] rust: add support for request_irq
 2025-06-09 23:22 UTC  (15+ messages)
` [PATCH v4 1/6] rust: irq: add irq module
` [PATCH v4 2/6] rust: irq: add flags module
` [PATCH v4 3/6] rust: irq: add support for non-threaded IRQs and handlers
` [PATCH v4 4/6] rust: irq: add support for threaded "
` [PATCH v4 5/6] rust: platform: add irq accessors
` [PATCH v4 6/6] rust: pci: "

[PATCH RFC 0/6] Rust Abstractions for PWM subsystem with TH1520 PWM driver
 2025-06-09 22:09 UTC  (14+ messages)
    ` [PATCH RFC 5/6] riscv: dts: thead: Add PVT node

[PATCH] rust: pin-init: examples, tests: use `ignore` instead of conditionally compiling tests
 2025-06-09 19:55 UTC  (2+ messages)

[PATCH 1/2] rust: init: re-enable doctests
 2025-06-09 19:54 UTC  (2+ messages)

[PATCH v2 00/13] `Zeroable` improvements & bindings integration
 2025-06-09 19:53 UTC  (2+ messages)

[PATCH 0/3] pin-init sync: test & CI fixes
 2025-06-09 19:52 UTC  (2+ messages)

[PATCH 0/2] rust: add initial scatterlist abstraction
 2025-06-09 17:44 UTC  (9+ messages)
` [PATCH 1/2] rust: add initial scatterlist bindings

[PATCH v4] rust: regulator: add a bare minimum regulator abstraction
 2025-06-09 17:07 UTC  (4+ messages)

[PATCH v3 0/4] rust: Add ACPI match table support for Rust drivers
 2025-06-09 14:50 UTC  (20+ messages)
` [PATCH v3 1/4] rust: acpi: add `acpi::DeviceId` abstraction
` [PATCH v3 2/4] rust: driver: Add ACPI id table support to Adapter trait
` [PATCH v3 3/4] rust: platform: Add ACPI match table support to `Driver` trait
` [PATCH v3 4/4] samples: rust: add ACPI match table example to platform driver

[PATCH] rust: cpumask: Validate CPU number in set() and clear()
 2025-06-09 11:17 UTC  (5+ messages)

[PATCH v6] rust: transmute: Add methods for FromBytes trait
 2025-06-09  4:33 UTC  (3+ messages)

Rust for Linux Open Meeting
 2025-06-08 17:40 UTC  (11+ messages)
  ` No Open Meeting at Nov 15
    ` Open Meeting at Jan 24
      ` Open Meeting at March 27
        ` Open Meeting at May 29
          ` Open Meeting at Aug 7
            ` Open Meeting at Dec 11
              ` Open Meeting at Feb 5
                ` Open Meeting at April 16
                  ` Open Meeting at Jun 11

[PATCH AUTOSEL 6.15 03/10] rust: module: place cleanup_module() in .exit.text section
 2025-06-08 16:58 UTC  (4+ messages)
` [PATCH AUTOSEL 6.15 04/10] rust: arm: fix unknown (to Clang) argument '-mno-fdpic'

[PATCH AUTOSEL 6.14 03/10] rust: module: place cleanup_module() in .exit.text section
 2025-06-08 16:58 UTC  (4+ messages)
` [PATCH AUTOSEL 6.14 04/10] rust: arm: fix unknown (to Clang) argument '-mno-fdpic'

[PATCH AUTOSEL 6.12 03/10] rust: module: place cleanup_module() in .exit.text section
 2025-06-08 16:57 UTC  (4+ messages)
` [PATCH AUTOSEL 6.12 04/10] rust: arm: fix unknown (to Clang) argument '-mno-fdpic'

[PATCH AUTOSEL 6.6 3/8] rust: module: place cleanup_module() in .exit.text section
 2025-06-08 16:57 UTC  (2+ messages)

[PATCH AUTOSEL 6.1 2/5] rust: module: place cleanup_module() in .exit.text section
 2025-06-08 16:55 UTC  (2+ messages)

[PATCH v5 0/3] rust: miscdevice: add additional data to MiscDeviceRegistration
 2025-06-08 11:43 UTC  (5+ messages)
` [PATCH v5 1/3] rust: implement `Wrapper<T>` for `Opaque<T>`

[PATCH v4] rust: doc: Clean up formatting in io.rs
 2025-06-08  7: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).