rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-09-08 07:39:05 to 2024-09-13 20:31:35 UTC [more...]

[PATCH] rust: shrinker: add shrinker abstraction
 2024-09-13 20:31 UTC  (3+ messages)

[PATCH v3 2/2] checkpatch: warn on known non-plural rust doc headers
 2024-09-13 19:34 UTC  (5+ messages)

[PATCH] rust: sync: fix incorrect Sync bounds for LockedBy
 2024-09-13 18:45 UTC  (2+ messages)

[PATCH] kbuild: remove unnecessary export of RUST_LIB_SRC
 2024-09-13 18:06 UTC 

[PATCH v3] rust: add global lock support
 2024-09-13 16:52 UTC  (5+ messages)

[PATCH 0/3] Untrusted data abstraction
 2024-09-13 16:49 UTC  (9+ messages)
` [PATCH 1/3] rust: add untrusted "
` [RFC PATCH 2/3] WIP: rust: fs: mark data returned by inodes untrusted
` [RFC PATCH 3/3] WIP: rust: tarfs: use untrusted data API

[PATCH v5 0/3] rust: Add irq abstraction, SpinLockIrq
 2024-09-13 15:49 UTC  (11+ messages)
` [PATCH v5 1/3] rust: Introduce irq module
` [PATCH v5 2/3] rust: sync: Introduce lock::Backend::Context
` [PATCH v5 3/3] rust: sync: Add SpinLockIrq

[PATCH v2] kernel-docs: Add new section for Rust learning materials
 2024-09-13 15:38 UTC 

[PATCH] kernel-docs: Add new section for Rust learning materials
 2024-09-13 15:33 UTC  (3+ messages)

[PATCH v3] rust: error: make conversion functions public
 2024-09-13 13:29 UTC  (3+ messages)

[PATCH 0/8] Add generic overlay for MikroBUS addon boards
 2024-09-13 10:23 UTC  (37+ messages)
` [PATCH 1/8] rust: kernel: Add Platform device and driver abstractions
` [PATCH 2/8] dt-bindings: connector: Add MikorBUS connector
` [PATCH 3/8] mikrobus: Add mikrobus driver
` [PATCH 4/8] dts: ti: k3-am625-beagleplay: Enable mikroBUS connector
` [PATCH 5/8] dts: ti: beagleplay: Add mikrobus connector symbols
` [PATCH 6/8] addon_boards: Add addon_boards plumbing
` [PATCH 7/8] addon_boards: mikrobus: Add Weather Click
` [PATCH 8/8] addon_boards: mikrobus: Add GPS3 Click

[PATCH v2 00/19] Implement DWARF modversions
 2024-09-13  8:00 UTC  (23+ messages)
` [PATCH v2 01/19] tools: Add gendwarfksyms
` [PATCH v2 13/19] gendwarfksyms: Add symtypes output
` [PATCH v2 14/19] gendwarfksyms: Add symbol versioning
` [PATCH v2 16/19] gendwarfksyms: Add support for reserved structure fields

[PATCH v7] rust: support for shadow call stack sanitizer
 2024-09-12 22:08 UTC  (2+ messages)

[PATCH v3 1/2] docs: rust: make section names plural
 2024-09-12 19:56 UTC 

[PATCH v4 0/3] rust: Add irq abstraction, SpinLockIrq
 2024-09-12 18:31 UTC  (7+ messages)
` [PATCH v4 1/3] rust: Introduce irq module
` [PATCH v4 2/3] rust: sync: Introduce lock::Backend::Context
` [PATCH v4 3/3] rust: sync: Add SpinLockIrq

[PATCH v2] rust: Make functions accessible outside the kernel crate
 2024-09-12 14:42 UTC  (3+ messages)

[PATCH v2 1/2] rust: kernel: clean up empty `///` lines
 2024-09-12 11:50 UTC  (5+ messages)
` [PATCH v2 2/2] checkpatch: warn on empty rust doc comments

[PATCH v6 00/26] Generic `Allocator` support for Rust
 2024-09-12  8:18 UTC  (63+ messages)
` [PATCH v6 01/26] rust: alloc: add `Allocator` trait
` [PATCH v6 04/26] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v6 09/26] rust: alloc: implement kernel `Box`
` [PATCH v6 13/26] rust: alloc: implement kernel `Vec` type
` [PATCH v6 14/26] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v6 15/26] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v6 22/26] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v6 26/26] MAINTAINERS: add entry for the Rust `alloc` module

[PATCH v7 00/26] Generic `Allocator` support for Rust
 2024-09-11 22:53 UTC  (27+ messages)
` [PATCH v7 01/26] rust: alloc: add `Allocator` trait
` [PATCH v7 02/26] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v7 03/26] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v7 04/26] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v7 05/26] rust: alloc: add module `allocator_test`
` [PATCH v7 06/26] rust: alloc: implement `Vmalloc` allocator
` [PATCH v7 07/26] rust: alloc: implement `KVmalloc` allocator
` [PATCH v7 08/26] rust: alloc: add __GFP_NOWARN to `Flags`
` [PATCH v7 09/26] rust: alloc: implement kernel `Box`
` [PATCH v7 10/26] rust: treewide: switch to our kernel `Box` type
` [PATCH v7 11/26] rust: alloc: remove extension of std's `Box`
` [PATCH v7 12/26] rust: alloc: add `Box` to prelude
` [PATCH v7 13/26] rust: alloc: implement kernel `Vec` type
` [PATCH v7 14/26] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v7 15/26] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v7 16/26] rust: treewide: switch to the kernel `Vec` type
` [PATCH v7 17/26] rust: alloc: remove `VecExt` extension
` [PATCH v7 18/26] rust: alloc: add `Vec` to prelude
` [PATCH v7 19/26] rust: error: use `core::alloc::LayoutError`
` [PATCH v7 20/26] rust: error: check for config `test` in `Error::name`
` [PATCH v7 21/26] rust: alloc: implement `contains` for `Flags`
` [PATCH v7 22/26] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v7 23/26] rust: str: test: replace `alloc::format`
` [PATCH v7 24/26] rust: alloc: update module comment of alloc.rs
` [PATCH v7 25/26] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
` [PATCH v7 26/26] MAINTAINERS: add entry for the Rust `alloc` module

[PATCH v2 0/3] rust: Initial MIPS support
 2024-09-10 22:28 UTC  (10+ messages)
` [PATCH v2 1/3] rust: Introduce HAVE_GENERATE_RUST_TARGET config option
` [PATCH v2 3/3] rust: Enable for MIPS

[PATCH] docs: rust: clean up empty `\\\` lines and improve rustdoc formatting
 2024-09-10 13:30 UTC  (4+ messages)

[PATCH] rust: enable arbitrary_self_types and remove `Receiver`
 2024-09-10 12:25 UTC  (2+ messages)

[PATCH v2] rust: add global lock support
 2024-09-10  7:10 UTC  (9+ messages)

[PATCH RFC] rust: lockdep: Use Pin for all LockClassKey usages
 2024-09-10  7:07 UTC  (4+ messages)

[PATCH 2/2] checkpatch: warn on known non-plural rust doc headers
 2024-09-09 16:38 UTC  (5+ messages)

[PATCH] rust: error.rs: Remove dead_code marker and make from_err_ptr, from_result and to_ptr public
 2024-09-09 16:22 UTC  (3+ messages)

[PATCH 00/19] rust: lint improvements
 2024-09-08  8:50 UTC  (5+ messages)
` [PATCH 05/19] rust: enable `clippy::unnecessary_safety_comment` lint
` [PATCH 19/19] rust: std_vendor: simplify `{ .. macro! .. }` with inner attributes


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).