messages from 2024-10-03 01:24:56 to 2024-10-07 12:30:48 UTC [more...]
[PATCH 0/3] implement `kernel::sync::Refcount` and convert users
2024-10-07 12:30 UTC (32+ messages)
` [PATCH 1/3] rust: implement `kernel::sync::Refcount`
` [PATCH 2/3] rust: convert `Arc` to use `Refcount`
` [PATCH 3/3] rust: block: convert `block::mq` "
[PATCH net-next v2 0/6] rust: Add IO polling
2024-10-07 12:28 UTC (27+ messages)
` [PATCH net-next v2 1/6] rust: time: Implement PartialEq and PartialOrd for Ktime
` [PATCH net-next v2 2/6] rust: time: Introduce Delta type
` [PATCH net-next v2 3/6] rust: time: Implement addition of Ktime and Delta
` [PATCH net-next v2 4/6] rust: time: add wrapper for fsleep function
` [PATCH net-next v2 5/6] rust: Add read_poll_timeout function
` [PATCH net-next v2 6/6] net: phy: qt2025: wait until PHY becomes ready
[PATCH v6 0/3] rust: Add irq abstraction, SpinLockIrq
2024-10-07 12:01 UTC (12+ messages)
` [PATCH v6 1/3] rust: Introduce irq module
` [PATCH v6 3/3] rust: sync: Add SpinLockIrq
[PATCH v5] rust: add PidNamespace
2024-10-07 11:59 UTC (4+ messages)
[PATCH] scripts: add `uapi` crate to `generate_rust_analyzer.py`
2024-10-06 22:59 UTC
[RFC PATCH 00/28] x86: Rely on toolchain for relocatable code
2024-10-06 19:38 UTC (20+ messages)
` [RFC PATCH 05/28] x86: Define the stack protector guard symbol explicitly
` [RFC PATCH 25/28] x86: Use PIE codegen for the core kernel
[PATCH 0/2] rust: Move unfit code out of `rust/kernel/types.rs`
2024-10-06 19:29 UTC (3+ messages)
[PATCH v3 00/20] Implement DWARF modversions
2024-10-06 17:36 UTC (3+ messages)
` [PATCH v3 01/20] scripts: import more list macros
[PATCH] lib/Kconfig.debug: fix grammar in RUST_BUILD_ASSERT_ALLOW
2024-10-06 14:02 UTC (4+ messages)
` [PATCH v2] "
` [PATCH v3] "
[PATCH v4] rust: optimize error type to use nonzero
2024-10-06 10:16 UTC (4+ messages)
[PATCH 0/5] use custom FFI integer types
2024-10-05 22:10 UTC (4+ messages)
` [PATCH 1/5] rust: fix size_t in bindgen prototypes of C builtins
[PATCH v3] rust: add trylock method support for lock backend
2024-10-05 22:05 UTC (2+ messages)
[PATCH] rust: update dbg macro outputs in docs
2024-10-05 20:55 UTC (5+ messages)
[PATCH v2] rust: std_vendor: update dbg macro from rust upstream
2024-10-05 19:48 UTC (2+ messages)
[PATCH v3] rust: optimize error type to use nonzero
2024-10-05 19:03 UTC (8+ messages)
[PATCH 0/2] rust: lockdep: Fix soundness issue affecting LockClassKeys
2024-10-05 6:10 UTC (4+ messages)
` [PATCH 1/2] rust: lockdep: Remove support for dynamically allocated LockClassKeys
` [PATCH 2/2] rust: lockdep: Use Pin for all LockClassKey usages
[PATCH 00/23] kbuild: support building external modules in a separate build directory
2024-10-04 20:16 UTC (19+ messages)
` [PATCH 09/23] speakup: use SPKDIR=$(src) to specify the source directory
` [PATCH 17/23] kbuild: build external modules in their directory
` [PATCH 18/23] kbuild: remove extmod_prefix, MODORDER, MODULES_NSDEPS variables
` [PATCH 19/23] kbuild: support building external modules in a separate build directory
` [PATCH 20/23] kbuild: support -fmacro-prefix-map for external modules
` [PATCH 21/23] kbuild: use absolute path in the generated wrapper Makefile
` [PATCH 22/23] kbuild: make wrapper Makefile more convenient for external modules
` [PATCH 23/23] kbuild: allow to start building external module in any directory
[PATCH v2 00/14] hrtimer Rust API
2024-10-04 10:47 UTC (8+ messages)
[PATCH v9 00/29] Generic `Allocator` support for Rust
2024-10-04 15:41 UTC (30+ messages)
` [PATCH v9 01/29] rust: alloc: add `Allocator` trait
` [PATCH v9 02/29] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v9 03/29] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v9 04/29] rust: alloc: implement `ReallocFunc`
` [PATCH v9 05/29] rust: alloc: make `allocator` module public
` [PATCH v9 06/29] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v9 07/29] rust: alloc: add module `allocator_test`
` [PATCH v9 08/29] rust: alloc: implement `Vmalloc` allocator
` [PATCH v9 09/29] rust: alloc: implement `KVmalloc` allocator
` [PATCH v9 10/29] rust: alloc: add __GFP_NOWARN to `Flags`
` [PATCH v9 11/29] rust: alloc: implement kernel `Box`
` [PATCH v9 12/29] rust: treewide: switch to our kernel `Box` type
` [PATCH v9 13/29] rust: alloc: remove extension of std's `Box`
` [PATCH v9 14/29] rust: alloc: add `Box` to prelude
` [PATCH v9 15/29] rust: alloc: introduce `ArrayLayout`
` [PATCH v9 16/29] rust: alloc: implement kernel `Vec` type
` [PATCH v9 17/29] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v9 18/29] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v9 19/29] rust: treewide: switch to the kernel `Vec` type
` [PATCH v9 20/29] rust: alloc: remove `VecExt` extension
` [PATCH v9 21/29] rust: alloc: add `Vec` to prelude
` [PATCH v9 22/29] rust: error: use `core::alloc::LayoutError`
` [PATCH v9 23/29] rust: error: check for config `test` in `Error::name`
` [PATCH v9 24/29] rust: alloc: implement `contains` for `Flags`
` [PATCH v9 25/29] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v9 26/29] rust: str: test: replace `alloc::format`
` [PATCH v9 27/29] rust: alloc: update module comment of alloc.rs
` [PATCH v9 28/29] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
` [PATCH v9 29/29] MAINTAINERS: add entry for the Rust `alloc` module
[PATCH net-next v1 0/2] add delay abstraction (sleep functions)
2024-10-04 14:08 UTC (5+ messages)
` [PATCH net-next v1 1/2] rust: add delay abstraction
[PATCH net-next v1 2/2] net: phy: qt2025: wait until PHY becomes ready
2024-10-04 13:37 UTC (15+ messages)
` iopoll abstraction (was: Re: [PATCH net-next v1 2/2] net: phy: qt2025: wait until PHY becomes ready)
` iopoll abstraction
[PATCH v8 00/29] Generic `Allocator` support for Rust
2024-10-04 12:04 UTC (4+ messages)
` [PATCH v8 11/29] rust: alloc: implement kernel `Box`
[GIT PULL] Rust fixes for 6.12
2024-10-04 0:22 UTC (2+ messages)
[PATCH net-next v1] rust: net::phy always define device_table in module_phy_driver macro
2024-10-04 0:00 UTC (2+ messages)
[PATCH v7 00/26] Generic `Allocator` support for Rust
2024-10-03 22:49 UTC (6+ messages)
` [PATCH v7 25/26] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
[PATCH 00/19] rust: lint improvements
2024-10-03 21:51 UTC (18+ messages)
` [PATCH 04/19] rust: enable `clippy::undocumented_unsafe_blocks` lint
` [PATCH 12/19] rust: replace `clippy::dbg_macro` with `disallowed_macros`
` [PATCH 14/19] rust: provide proper code documentation titles
` [PATCH 16/19] Documentation: rust: add coding guidelines on lints
[PATCH v3] rust: error: make conversion functions public
2024-10-03 21:49 UTC (2+ messages)
[PATCH v2] rust: enable arbitrary_self_types and remove `Receiver`
2024-10-03 21:49 UTC (2+ messages)
[WIP RFC v2 00/35] Rust bindings for KMS + RVKMS
2024-10-03 20:16 UTC (7+ messages)
` [WIP RFC v2 01/35] WIP: rust/drm: Add fourcc bindings
` [WIP RFC v2 06/35] rust: drm/kms: Add drm_plane bindings
[PATCH] rust: kunit: use C-string literals to clean warning
2024-10-03 13:02 UTC (3+ messages)
[PATCH net-next v1 1/2] rust: add delay abstraction
2024-10-03 12:33 UTC (6+ messages)
[PATCH v2] rust: optimize error type to use nonzero
2024-10-03 11:50 UTC (3+ messages)
[PATCH v3] rust: device: change the from_raw() function
2024-10-03 11:30 UTC (5+ messages)
[PATCH v2 0/2] Miscdevices in Rust
2024-10-03 8:33 UTC (13+ messages)
` [PATCH v2 2/2] rust: miscdevice: add base miscdevice abstraction
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).