messages from 2024-07-30 10:27:41 to 2024-08-01 15:10:36 UTC [more...]
[PATCH v3 00/25] Generic `Allocator` support for Rust
2024-08-01 15:10 UTC (49+ messages)
` [PATCH v3 01/25] rust: alloc: add `Allocator` trait
` [PATCH v3 02/25] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v3 03/25] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v3 04/25] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v3 05/25] rust: alloc: add module `allocator_test`
` [PATCH v3 06/25] rust: alloc: implement `Vmalloc` allocator
` [PATCH v3 07/25] rust: alloc: implement `KVmalloc` allocator
` [PATCH v3 08/25] rust: types: implement `Unique<T>`
` [PATCH v3 09/25] rust: alloc: implement kernel `Box`
` [PATCH v3 10/25] rust: treewide: switch to our kernel `Box` type
` [PATCH v3 11/25] rust: alloc: remove `BoxExt` extension
` [PATCH v3 12/25] rust: alloc: add `Box` to prelude
` [PATCH v3 13/25] rust: alloc: import kernel `Box` type in types.rs
` [PATCH v3 14/25] rust: alloc: import kernel `Box` type in init.rs
` [PATCH v3 15/25] rust: alloc: implement kernel `Vec` type
` [PATCH v3 16/25] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v3 17/25] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v3 18/25] rust: treewide: switch to the kernel `Vec` type
` [PATCH v3 19/25] rust: alloc: remove `VecExt` extension
` [PATCH v3 20/25] rust: alloc: add `Vec` to prelude
` [PATCH v3 21/25] rust: alloc: remove `GlobalAlloc` and `krealloc_aligned`
` [PATCH v3 22/25] rust: error: use `core::alloc::LayoutError`
` [PATCH v3 23/25] rust: str: test: replace `alloc::format`
` [PATCH v3 24/25] rust: alloc: update module comment of alloc.rs
` [PATCH v3 25/25] kbuild: rust: remove the `alloc` crate
[PATCH] rust: add `ARef::into_raw`
2024-08-01 15:06 UTC (3+ messages)
[PATCH v3] rust: mm: add abstractions for mm_struct and vm_area_struct
2024-08-01 14:37 UTC (5+ messages)
[PATCH] rust: add `module_params` macro
2024-08-01 14:21 UTC (6+ messages)
[PATCH v3 00/10] Add Rust linked list for reference counted values
2024-08-01 13:47 UTC (24+ messages)
` [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 09/10] rust: list: support heterogeneous lists
[PATCH v2 0/2] Rust KCFI support
2024-08-01 13:41 UTC (4+ messages)
` [PATCH v2 1/2] cfi: add CONFIG_CFI_ICALL_NORMALIZE_INTEGERS
` [PATCH v2 2/2] rust: cfi: add support for CFI_CLANG with Rust
[PATCH v2 1/2] rust: kernel: add `drop_contents` to `BoxExt`
2024-08-01 12:30 UTC (5+ messages)
` [PATCH v2 2/2] rust: init: add `write_[pin_]init` functions
[PATCH 00/15] Implement MODVERSIONS for Rust
2024-08-01 11:22 UTC (7+ messages)
[PATCH v2 0/3] rust: Add irq abstraction, SpinLockIrq
2024-08-01 10:29 UTC (10+ messages)
` [PATCH v2 1/3] rust: Introduce irq module
` [PATCH v2 2/3] rust: sync: Introduce lock::Backend::Context
` [PATCH v2 3/3] rust: sync: Add SpinLockIrq
[PATCH v4 0/2] Tracepoints and static branch in Rust
2024-08-01 10:28 UTC (9+ messages)
` [PATCH v4 1/2] rust: add static_key_false
` [PATCH v4 2/2] rust: add tracepoint support
[PATCH v3] rust: Kbuild: Skip -fmin-function-alignment in bindgen flags
2024-08-01 9:45 UTC (2+ messages)
[PATCH] pahole: Apply CU-level filters early in loading
2024-08-01 9:20 UTC (6+ messages)
[PATCH net-next v2 0/6] net: phy: add Applied Micro QT2025 PHY driver
2024-08-01 9:07 UTC (21+ messages)
` [PATCH net-next v2 1/6] rust: sizes: add commonly used constants
` [PATCH net-next v2 2/6] rust: net::phy support probe callback
` [PATCH net-next v2 3/6] rust: net::phy implement AsRef<kernel::device::Device> trait
` [PATCH net-next v2 4/6] rust: net::phy unified read/write API for C22 and C45 registers
` [PATCH net-next v2 5/6] rust: net::phy unified genphy_read_status function "
` [PATCH net-next v2 6/6] net: phy: add Applied Micro QT2025 PHY driver
[PATCH v8 0/6] Red-black tree abstraction needed by Rust Binder
2024-08-01 9:02 UTC (8+ messages)
` [PATCH v8 1/6] rust: kernel: add `drop_contents` to `BoxExt`
` [PATCH v8 2/6] rust: rbtree: add red-black tree implementation backed by the C version
[PATCH V5 0/8] Rust bindings for cpufreq and OPP core + sample driver
2024-08-01 8:31 UTC (7+ messages)
` [PATCH V5 5/8] rust: Extend cpufreq bindings for policy and driver ops
` [PATCH V5 6/8] rust: Extend cpufreq bindings for driver registration
` [PATCH V5 7/8] rust: Extend OPP bindings with CPU frequency table
` [PATCH V5 8/8] cpufreq: Add Rust based cpufreq-dt driver
[PATCH v6 0/6] Red-black tree abstraction needed by Rust Binder
2024-07-31 20:47 UTC (4+ messages)
` [PATCH v6 1/6] rust: kernel: add `drop_contents` to `BoxExt`
[PATCH v2] rust: Kbuild: Skip -fmin-function-alignment in bindgen flags
2024-07-31 20:01 UTC (5+ messages)
Rust for Linux Open Meeting
2024-07-31 15:20 UTC (7+ 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
[RFC PATCH] rust: types: Add explanation for ARef pattern
2024-07-31 14:48 UTC (10+ messages)
[PATCH v2] init/Kconfig: Only block on RANDSTRUCT for RUST
2024-07-31 12:54 UTC
[PATCH] init/Kconfig: Only block on RANDSTRUCT for RUST
2024-07-31 12:51 UTC (5+ messages)
[PATCH] rust: types: improve `ForeignOwnable` documentation
2024-07-31 8:41 UTC (2+ messages)
[PATCH v3] rust: Support latest version of `rust-analyzer`
2024-07-31 8:00 UTC (2+ messages)
[PATCH] rust: Kbuild: Skip -fmin-function-alignment in bindgen flags
2024-07-31 4:55 UTC (3+ messages)
[PATCH] rust: support arrays in target JSON
2024-07-30 22:33 UTC (3+ messages)
[PATCH] rust: error: allow `useless_conversion` for 32-bit builds
2024-07-30 20:36 UTC (4+ messages)
[PATCH v2] rust: mm: add abstractions for mm_struct and vm_area_struct
2024-07-30 18:37 UTC (4+ messages)
[PATCH v2] arm: rust: Enable Rust support for ARMv7
2024-07-30 18:11 UTC (6+ messages)
[PATCH] rust: implement ForeignOwnable for Pin<Box<T>>
2024-07-30 18:06 UTC (4+ messages)
[PATCH 0/2] Rust KCFI support
2024-07-30 18:01 UTC (19+ messages)
` [PATCH 1/2] cfi: add CONFIG_CFI_ICALL_NORMALIZE_INTEGERS
` [PATCH 2/2] rust: cfi: add support for CFI_CLANG with Rust
[PATCH v2 0/2] Align kvrealloc() with krealloc()
2024-07-30 14:32 UTC (10+ messages)
` [PATCH v2 1/2] mm: vmalloc: implement vrealloc()
[PATCH v2 1/6] rust: module: add static pointer to `{init,cleanup}_module()`
2024-07-30 11:18 UTC (3+ messages)
` "
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).