rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-10-01 15:01:48 to 2024-10-04 15:43:10 UTC [more...]

[PATCH v9 00/29] Generic `Allocator` support for Rust
 2024-10-04 15:41 UTC  (13+ 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 net-next v1 0/2] add delay abstraction (sleep functions)
 2024-10-04 14:08 UTC  (38+ 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
      ` iopoll abstraction (was: Re: [PATCH net-next v1 2/2] net: phy: qt2025: wait until PHY becomes ready)
        ` iopoll abstraction

[RFC PATCH 00/28] x86: Rely on toolchain for relocatable code
 2024-10-04 13:15 UTC  (11+ 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 v2] rust: std_vendor: update dbg macro from rust upstream
 2024-10-04 12:56 UTC 

[PATCH v3] rust: optimize error type to use nonzero
 2024-10-04 12:57 UTC  (4+ messages)

[PATCH v8 00/29] Generic `Allocator` support for Rust
 2024-10-04 12:04 UTC  (44+ messages)
` [PATCH v8 01/29] rust: alloc: add `Allocator` trait
` [PATCH v8 04/29] rust: alloc: implement `ReallocFunc`
` [PATCH v8 05/29] rust: alloc: make `allocator` module public
` [PATCH v8 06/29] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v8 08/29] rust: alloc: implement `Vmalloc` allocator
` [PATCH v8 09/29] rust: alloc: implement `KVmalloc` allocator
` [PATCH v8 11/29] rust: alloc: implement kernel `Box`
` [PATCH v8 15/29] rust: alloc: introduce `ArrayLayout`
` [PATCH v8 16/29] rust: alloc: implement kernel `Vec` type
` [PATCH v8 17/29] rust: alloc: implement `IntoIterator` for `Vec`
` [PATCH v8 18/29] rust: alloc: implement `collect` for `IntoIter`
` [PATCH v8 19/29] rust: treewide: switch to the kernel `Vec` type
` [PATCH v8 20/29] rust: alloc: remove `VecExt` extension
` [PATCH v8 21/29] rust: alloc: add `Vec` to prelude
` [PATCH v8 22/29] rust: error: use `core::alloc::LayoutError`
` [PATCH v8 23/29] rust: error: check for config `test` in `Error::name`
` [PATCH v8 24/29] rust: alloc: implement `contains` for `Flags`
` [PATCH v8 25/29] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v8 26/29] rust: str: test: replace `alloc::format`
` [PATCH v8 27/29] rust: alloc: update module comment of alloc.rs
` [PATCH v8 28/29] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
` [PATCH v8 29/29] MAINTAINERS: add entry for the Rust `alloc` module

[PATCH v5] rust: add PidNamespace
 2024-10-04 12:01 UTC  (2+ messages)

[PATCH] rust: update dbg macro outputs in docs
 2024-10-04  9:00 UTC  (3+ messages)

[PATCH v6 0/3] rust: Add irq abstraction, SpinLockIrq
 2024-10-04  8:58 UTC  (7+ messages)
` [PATCH v6 1/3] rust: Introduce irq module
` [PATCH v6 3/3] rust: sync: Add SpinLockIrq

[PATCH] lib/Kconfig.debug: fix grammar in RUST_BUILD_ASSERT_ALLOW
 2024-10-04  8:55 UTC  (2+ messages)
` [PATCH v2] "

[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  (26+ messages)
` [PATCH 04/19] rust: enable `clippy::undocumented_unsafe_blocks` lint
` [PATCH 08/19] rust: enable `rustdoc::unescaped_backticks` 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 18/19] Documentation: rust: discuss `#[expect(...)]` in the guidelines

[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  (4+ messages)

[WIP RFC v2 00/35] Rust bindings for KMS + RVKMS
 2024-10-03 20:16 UTC  (9+ 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 00/23] kbuild: support building external modules in a separate build directory
 2024-10-03 19:47 UTC  (9+ 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 v2 00/14] hrtimer Rust API
 2024-10-03 16:18 UTC  (6+ messages)

[PATCH] rust: kunit: use C-string literals to clean warning
 2024-10-03 13:02 UTC  (4+ 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  (21+ messages)
` [PATCH v2 2/2] rust: miscdevice: add base miscdevice abstraction

[PATCH net v3] net: phy: qt2025: Fix warning: unused import DeviceId
 2024-10-03  0:50 UTC  (5+ messages)

[PATCH] rust: optimize error type to use nonzero
 2024-10-03  0:10 UTC  (2+ messages)

[PATCH v5 1/2] docs: rust: make section names plural
 2024-10-02 12:46 UTC  (6+ messages)
` [PATCH v5 2/2] checkpatch: warn on known non-plural rust doc headers and empty doc comments

[PATCH v4] rust: add PidNamespace
 2024-10-02 11:30 UTC  (3+ messages)

[PATCH] [RFC] rust: add PidNamespace wrapper
 2024-10-02 11:08 UTC  (9+ messages)
` [PATCH v2] rust: add PidNamespace

[PATCH v2] rust: types: extend `Opaque` documentation
 2024-10-02  5:03 UTC 

[PATCH v3 1/2 RESEND] rust: kernel: clean up empty `///` lines
 2024-10-02  2:17 UTC  (6+ messages)
` [PATCH v3 2/2 RESEND] checkpatch: warn on empty rust doc comments

[PATCH] docs: rust: quick-start: add Ubuntu
 2024-10-01 22:58 UTC  (2+ messages)

[PATCH v2] rust: types: Add examples for the `Either` type
 2024-10-01 22:57 UTC  (2+ messages)

[PATCH v9 0/5] Tracepoints and static branch in Rust
 2024-10-01 22:28 UTC  (8+ messages)
` [PATCH v9 1/5] rust: add generic static_key_false
` [PATCH v9 4/5] jump_label: adjust inline asm to be consistent

[PATCH v3 00/20] Implement DWARF modversions
 2024-10-01 21:20 UTC  (13+ messages)
` [PATCH v3 03/20] tools: Add gendwarfksyms
` [PATCH v3 04/20] gendwarfksyms: Add address matching
` [PATCH v3 06/20] gendwarfksyms: Add a cache for processed DIEs
` [PATCH v3 10/20] gendwarfksyms: Expand structure types

[PATCH v3] kernel-docs: Add new section for Rust learning materials
 2024-10-01 20:10 UTC  (2+ messages)

[PATCH v1] RISC-V: disallow gcc + rust builds
 2024-10-01 19:27 UTC  (4+ messages)

[PATCH v2] rust: device: change the from_raw() function
 2024-10-01 17:18 UTC  (3+ 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).