rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-08-06 13:59:49 to 2024-08-12 13:33:13 UTC [more...]

[PATCH v6 0/5] Tracepoints and static branch in Rust
 2024-08-12 13:32 UTC  (14+ messages)
` [PATCH v6 1/5] rust: add generic static_key_false
` [PATCH v6 2/5] rust: add tracepoint support
` [PATCH v6 3/5] rust: samples: add tracepoint to Rust sample
` [PATCH v6 4/5] jump_label: adjust inline asm to be consistent
` [PATCH v6 5/5] rust: add arch_static_branch

[PATCH v4 00/28] Generic `Allocator` support for Rust
 2024-08-12 13:07 UTC  (94+ messages)
` [PATCH v4 01/28] rust: alloc: add `Allocator` trait
` [PATCH v4 02/28] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v4 03/28] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v4 04/28] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v4 05/28] rust: alloc: add module `allocator_test`
` [PATCH v4 06/28] rust: alloc: implement `Vmalloc` allocator
` [PATCH v4 08/28] rust: types: implement `Unique<T>`
` [PATCH v4 09/28] rust: alloc: implement kernel `Box`
` [PATCH v4 10/28] rust: treewide: switch to our kernel `Box` type
` [PATCH v4 11/28] rust: alloc: remove `BoxExt` extension
` [PATCH v4 12/28] rust: alloc: add `Box` to prelude
` [PATCH v4 18/28] rust: treewide: switch to the kernel `Vec` type
` [PATCH v4 19/28] rust: alloc: remove `VecExt` extension
` [PATCH v4 20/28] rust: alloc: add `Vec` to prelude
` [PATCH v4 21/28] rust: alloc: remove `GlobalAlloc` and `krealloc_aligned`
` [PATCH v4 22/28] rust: error: use `core::alloc::LayoutError`
` [PATCH v4 23/28] rust: error: check for config `test` in `Error::name`
` [PATCH v4 24/28] rust: alloc: implement `contains` for `Flags`
` [PATCH v4 25/28] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v4 26/28] rust: str: test: replace `alloc::format`
` [PATCH v4 27/28] rust: alloc: update module comment of alloc.rs
` [PATCH v4 28/28] kbuild: rust: remove the `alloc` crate

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

[PATCH 1/2] selftests: rust: config: add trailing newline
 2024-08-11 23:36 UTC  (6+ messages)
` [PATCH 2/2] selftests: rust: config: disable GCC_PLUGINS

[PATCH 0/6] kbuild: rust: add `RUSTC_VERSION` and reconfig/rebuild support
 2024-08-10 14:45 UTC  (13+ messages)
` [PATCH 1/6] kbuild: rust: add `CONFIG_RUSTC_VERSION`
` [PATCH 2/6] kbuild: rust: make command for `RUSTC_VERSION_TEXT` closer to the `CC` one
` [PATCH 3/6] kbuild: rust: re-run Kconfig if the version text changes
` [PATCH 4/6] kbuild: rust: rebuild "
` [PATCH 5/6] kbuild: rust: replace proc macros dependency on `core.o` with the version text
` [PATCH 6/6] docs: rust: include other expressions in conditional compilation section

[PATCH] rust: x86: remove `-3dnow{,a}` from target features
 2024-08-09 22:15 UTC  (4+ messages)

[PATCH] kbuild: rust-analyzer: mark `rust_is_available.sh` invocation as recursive
 2024-08-09 22:10 UTC  (4+ messages)

[PATCH] rust: add intrinsics to fix `-Os` builds
 2024-08-09 22:10 UTC  (8+ messages)

[PATCH v3] rust: Kbuild: Skip -fmin-function-alignment in bindgen flags
 2024-08-09 22:10 UTC  (7+ messages)

[PATCH v3 0/6] Rust: support `CPU_MITIGATIONS` and enable `objtool`
 2024-08-09 20:03 UTC  (9+ messages)
` [PATCH v3 1/6] rust: module: add static pointer to `{init,cleanup}_module()`
` [PATCH v3 3/6] x86/rust: support MITIGATION_RETHUNK
` [PATCH v3 5/6] objtool/rust: list `noreturn` Rust functions

[PATCH v2] pahole: Apply CU-level filters early in loading
 2024-08-09 13:51 UTC  (4+ messages)

[PATCH v2] rust: sort blk includes in bindings_helper.h
 2024-08-09 13:47 UTC  (2+ messages)

[PATCH] rust: sort includes in bindings_helper.h
 2024-08-09 13:38 UTC  (7+ messages)

[PATCH v9 0/8] File abstractions needed by Rust Binder
 2024-08-08 16:15 UTC  (9+ messages)
` [PATCH v9 1/8] rust: types: add `NotThreadSafe`
` [PATCH v9 2/8] rust: task: add `Task::current_raw`
` [PATCH v9 3/8] rust: file: add Rust abstraction for `struct file`
` [PATCH v9 4/8] rust: cred: add Rust abstraction for `struct cred`
` [PATCH v9 5/8] rust: security: add abstraction for secctx
` [PATCH v9 6/8] rust: file: add `FileDescriptorReservation`
` [PATCH v9 7/8] rust: file: add `Kuid` wrapper
` [PATCH v9 8/8] rust: file: add abstraction for `poll_table`

[PATCH v8 0/8] File abstractions needed by Rust Binder
 2024-08-08 16:04 UTC  (19+ messages)
` [PATCH v8 1/8] rust: types: add `NotThreadSafe`
` [PATCH v8 2/8] rust: task: add `Task::current_raw`
` [PATCH v8 3/8] rust: file: add Rust abstraction for `struct file`
` [PATCH v8 4/8] rust: cred: add Rust abstraction for `struct cred`
` [PATCH v8 5/8] rust: security: add abstraction for secctx
` [PATCH v8 6/8] rust: file: add `FileDescriptorReservation`

[RFC PATCH 0/5] Introduce the Rust Safety Standard
 2024-08-08 14:33 UTC  (11+ messages)
` [RFC PATCH 1/5] doc: rust: create safety standard
` [RFC PATCH 2/5] doc: rust: safety standard: add examples

[PATCH v3] rust: Support latest version of `rust-analyzer`
 2024-08-06 23:19 UTC  (2+ messages)

[PATCH v3 00/16] Extended MODVERSIONS Support
 2024-08-06 21:20 UTC  (17+ messages)
` [PATCH v3 01/16] module: Take const arg in validate_section_offset
` [PATCH v3 02/16] module: Factor out elf_validity_ehdr
` [PATCH v3 03/16] module: Factor out elf_validity_cache_sechdrs
` [PATCH v3 04/16] module: Factor out elf_validity_cache_secstrings
` [PATCH v3 05/16] module: Factor out elf_validity_cache_index_info
` [PATCH v3 06/16] module: Factor out elf_validity_cache_index_mod
` [PATCH v3 07/16] module: Factor out elf_validity_cache_index_sym
` [PATCH v3 08/16] module: Factor out elf_validity_cache_index_str
` [PATCH v3 09/16] module: Group section index calculations together
` [PATCH v3 10/16] module: Factor out elf_validity_cache_strtab
` [PATCH v3 11/16] module: Additional validation in elf_validity_cache_strtab
` [PATCH v3 12/16] module: Reformat struct for code style
` [PATCH v3 13/16] export_report: Rehabilitate script
` [PATCH v3 14/16] modules: Support extended MODVERSIONS info
` [PATCH v3 15/16] modpost: Produce extended modversion information
` [PATCH v3 16/16] export_report: Use new version info format

[PATCH v5] rust: support for shadow call stack sanitizer
 2024-08-06 20:27 UTC  (3+ messages)

[PATCH v2 0/2] Rust KCFI support
 2024-08-06 19:31 UTC  (2+ messages)

[PATCH v4 00/10] Add Rust linked list for reference counted values
 2024-08-06 14:47 UTC  (14+ messages)
` [PATCH v4 03/10] rust: list: add tracking for ListArc
` [PATCH v4 04/10] rust: list: add struct with prev/next pointers
` [PATCH v4 05/10] rust: list: add macro for implementing ListItem
` [PATCH v4 06/10] rust: list: add List
` [PATCH v4 08/10] rust: list: add cursor
` [PATCH v4 09/10] rust: list: support heterogeneous lists
` [PATCH v4 10/10] rust: list: add ListArcField

[PATCH v3 00/10] Add Rust linked list for reference counted values
 2024-08-06 14:14 UTC  (6+ messages)
` [PATCH v3 02/10] rust: list: add ListArc


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