rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-07-12 15:32:46 to 2024-07-25 14:27:43 UTC [more...]

[PATCH v8 0/8] File abstractions needed by Rust Binder
 2024-07-25 14:27 UTC 

[RFC PATCH] drm: panthor: add dev_coredumpv support
 2024-07-25 11:45 UTC  (30+ messages)

[PATCH v2 0/6] Rust: support `CPU_MITIGATIONS` and enable `objtool`
 2024-07-25  9:53 UTC  (17+ messages)
` [PATCH v2 1/6] rust: module: add static pointer to `{init,cleanup}_module()`
` [PATCH v2 2/6] x86/rust: support MITIGATION_RETPOLINE
` [PATCH v2 3/6] x86/rust: support MITIGATION_RETHUNK
` [PATCH v2 4/6] x86/rust: support MITIGATION_SLS
` [PATCH v2 5/6] objtool: list `noreturn` Rust functions
` [PATCH v2 6/6] objtool/kbuild/rust: enable objtool for Rust

[RFC PATCH 0/5] Introduce the Rust Safety Standard
 2024-07-25  7:47 UTC  (28+ messages)
` [RFC PATCH 1/5] doc: rust: create safety standard
` [RFC PATCH 2/5] doc: rust: safety standard: add examples
` [RFC PATCH 3/5] doc: rust: safety standard: add guarantees and type invariants
` [RFC PATCH 4/5] doc: rust: safety standard: add safety requirements
` [RFC PATCH 5/5] doc: rust: safety standard: add justifications

[GIT PULL] Rust for 6.11
 2024-07-25  1:32 UTC 

[PATCH v2 00/23] Generic `Allocator` support for Rust
 2024-07-24 20:32 UTC  (26+ messages)
` [PATCH v2 01/23] rust: alloc: add `Allocator` trait
` [PATCH v2 02/23] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v2 03/23] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v2 04/23] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v2 05/23] rust: alloc: add module `allocator_test`
` [PATCH v2 06/23] rust: alloc: implement `Vmalloc` allocator
` [PATCH v2 07/23] rust: alloc: implement `KVmalloc` allocator
` [PATCH v2 08/23] rust: types: implement `Unique<T>`
` [PATCH v2 09/23] rust: alloc: implement kernel `Box`
` [PATCH v2 10/23] rust: treewide: switch to our kernel `Box` type
` [PATCH v2 11/23] rust: alloc: remove `BoxExt` extension
` [PATCH v2 12/23] rust: alloc: add `Box` to prelude
` [PATCH v2 13/23] rust: alloc: import kernel `Box` type in types.rs
` [PATCH v2 14/23] rust: alloc: implement kernel `Vec` type
` [PATCH v2 15/23] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v2 16/23] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v2 17/23] rust: treewide: switch to the kernel `Vec` type
` [PATCH v2 18/23] rust: alloc: remove `VecExt` extension
` [PATCH v2 19/23] rust: alloc: add `Vec` to prelude
` [PATCH v2 20/23] rust: alloc: remove `GlobalAlloc` and `krealloc_aligned`
` [PATCH v2 21/23] rust: error: use `core::alloc::LayoutError`
` [PATCH v2 22/23] rust: str: test: replace `alloc::format`
` [PATCH v2 23/23] kbuild: rust: remove the `alloc` crate

[RFC PATCH] rust: types: Add explanation for ARef pattern
 2024-07-24 17:44 UTC  (3+ messages)

[PATCH v3] rust: Support latest version of `rust-analyzer`
 2024-07-24 17:27 UTC 

[PATCH] rust: add `module_params` macro
 2024-07-24 17:04 UTC  (5+ messages)

[PATCH v2] rust: Implement the smart pointer `InPlaceInit` for `Arc`
 2024-07-24 14:19 UTC  (3+ messages)

[PATCH v5 0/4] drm/panic: Add a QR code panic screen
 2024-07-24  7:48 UTC  (5+ messages)
` [PATCH v5 1/4] drm/panic: Add integer scaling to blit()
` [PATCH v5 2/4] drm/rect: Add drm_rect_overlap()
` [PATCH v5 3/4] drm/panic: Simplify logo handling
` [PATCH v5 4/4] drm/panic: Add a QR code panic screen

[PATCH v2 0/2] Align kvrealloc() with krealloc()
 2024-07-23 18:56 UTC  (14+ messages)
` [PATCH v2 1/2] mm: vmalloc: implement vrealloc()
` [PATCH v2 2/2] mm: kvmalloc: align kvrealloc() with krealloc()

[PATCH v2] rust: Support latest version of `rust-analyzer`
 2024-07-23 17:35 UTC  (4+ messages)

[PATCH 0/2] Align kvrealloc() with krealloc()
 2024-07-23 15:54 UTC  (10+ messages)
` [PATCH 1/2] mm: vmalloc: implement vrealloc()
` [PATCH 2/2] mm: kvmalloc: align kvrealloc() with krealloc()

[PATCH] rust: mm: add abstractions for mm_struct and vm_area_struct
 2024-07-23 15:04 UTC  (3+ messages)

[PATCH v6 0/6] Red-black tree abstraction needed by Rust Binder
 2024-07-23  9:15 UTC  (3+ messages)
` [PATCH v6 1/6] rust: kernel: add `drop_contents` to `BoxExt`

[PATCH] rust: Support latest version of `rust-anayzer`
 2024-07-23  8:54 UTC  (2+ messages)

[PATCH v3 00/10] Add Rust linked list for reference counted values
 2024-07-23  8:22 UTC  (11+ messages)
` [PATCH v3 01/10] rust: init: add `assert_pinned` macro
` [PATCH v3 02/10] rust: list: add ListArc
` [PATCH v3 03/10] rust: list: add tracking for ListArc
` [PATCH v3 04/10] rust: list: add struct with prev/next pointers
` [PATCH v3 05/10] rust: list: add macro for implementing ListItem
` [PATCH v3 06/10] rust: list: add List
` [PATCH v3 07/10] rust: list: add iterators
` [PATCH v3 08/10] rust: list: add cursor
` [PATCH v3 09/10] rust: list: support heterogeneous lists
` [PATCH v3 10/10] rust: list: add ListArcField

[PATCH v4 0/4] drm/panic: Add a QR code panic screen
 2024-07-23  8:09 UTC  (10+ messages)
` [PATCH v4 1/4] drm/panic: Add integer scaling to blit()
` [PATCH v4 2/4] drm/rect: Add drm_rect_overlap()
` [PATCH v4 3/4] drm/panic: Simplify logo handling
` [PATCH v4 4/4] drm/panic: Add a QR code panic screen

[PATCH v2 00/10] Device / Driver and PCI Rust abstractions
 2024-07-22 11:35 UTC  (10+ messages)
` [PATCH v2 01/10] rust: pass module name to `Module::init`

[PATCH 00/15] Implement MODVERSIONS for Rust
 2024-07-22  8:20 UTC  (6+ messages)

My first patch: Implement InPlaceInit for Arc
 2024-07-19 19:27 UTC  (4+ messages)
` [PATCH] Implement the smart pointer `InPlaceInit` for `Arc`

[PATCH v5] rust: str: Use `core::CStr`, remove the custom `CStr` implementation
 2024-07-18  2:06 UTC  (2+ messages)

[PATCH v2 1/2] rust: kernel: add `drop_contents` to `BoxExt`
 2024-07-17 19:54 UTC  (4+ messages)

[PATCH v4] rust: str: Use `core::CStr`, remove the custom `CStr` implementation
 2024-07-17 15:31 UTC 

[PATCH] rust: str: Use `core::CStr`, remove the custom `CStr` implementation
 2024-07-17 15:22 UTC  (9+ messages)

[PATCH v3] rust: str: Use `core::CStr`, remove the custom `CStr` implementation
 2024-07-17 15:10 UTC  (3+ messages)

[PATCH V4 0/8] Rust bindings for cpufreq and OPP core + sample driver
 2024-07-16 22:33 UTC  (12+ messages)
` [PATCH V4 8/8] cpufreq: Add Rust based cpufreq-dt driver

[PATCH v2] rust: str: Use `core::CStr`, remove the custom `CStr` implementation
 2024-07-15 21:49 UTC 

[PATCH] rust: firmware: fix invalid rustdoc link
 2024-07-14  6:16 UTC  (4+ messages)
` [PATCH v2] "

Plumbers Testing MC potential topic: specialised toolchains
 2024-07-13 23:03 UTC  (5+ 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).