messages from 2024-09-04 18:03:35 to 2024-09-11 22:56:10 UTC [more...]
[PATCH v7 00/26] Generic `Allocator` support for Rust
2024-09-11 22:52 UTC (14+ 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 v6 00/26] Generic `Allocator` support for Rust
2024-09-11 21:59 UTC (61+ 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 0/8] Add generic overlay for MikroBUS addon boards
2024-09-11 21:52 UTC (29+ 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] kernel-docs: Add new section for Rust learning materials
2024-09-11 18:59 UTC
[PATCH v2 1/2] rust: kernel: clean up empty `///` lines
2024-09-11 17:44 UTC (2+ messages)
` [PATCH v2 2/2] checkpatch: warn on empty rust doc comments
[PATCH v2 00/19] Implement DWARF modversions
2024-09-11 16:03 UTC (34+ messages)
` [PATCH v2 01/19] tools: Add gendwarfksyms
` [PATCH v2 02/19] gendwarfksyms: Add symbol list handling
` [PATCH v2 03/19] gendwarfksyms: Add address matching
` [PATCH v2 06/19] gendwarfksyms: Add a cache for processed DIEs
` [PATCH v2 08/19] gendwarfksyms: Expand subroutine_type
` [PATCH v2 11/19] gendwarfksyms: Limit structure expansion
` [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 v2 18/19] x86/asm-prototypes: Include <asm/ptrace.h>
[PATCH v3] rust: add global lock support
2024-09-11 14:10 UTC (2+ messages)
[PATCH v2 0/3] rust: Initial MIPS support
2024-09-10 22:28 UTC (11+ messages)
` [PATCH v2 1/3] rust: Introduce HAVE_GENERATE_RUST_TARGET config option
` [PATCH v2 2/3] MIPS: Rename mips_instruction type to workaround bindgen issue
` [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 v2] rust: Make functions accessible outside the kernel crate
2024-09-09 19:59 UTC
[PATCH 2/2] checkpatch: warn on known non-plural rust doc headers
2024-09-09 16:38 UTC (8+ 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 (44+ messages)
` [PATCH 01/19] rust: workqueue: remove unneeded ``#[allow(clippy::new_ret_no_self)]`
` [PATCH 02/19] rust: sort global Rust flags
` [PATCH 03/19] rust: types: avoid repetition in `{As,From}Bytes` impls
` [PATCH 04/19] rust: enable `clippy::undocumented_unsafe_blocks` lint
` [PATCH 05/19] rust: enable `clippy::unnecessary_safety_comment` lint
` [PATCH 06/19] rust: enable `clippy::unnecessary_safety_doc` lint
` [PATCH 07/19] rust: enable `clippy::ignored_unit_patterns` lint
` [PATCH 08/19] rust: enable `rustdoc::unescaped_backticks` lint
` [PATCH 09/19] rust: init: remove unneeded `#[allow(clippy::disallowed_names)]`
` [PATCH 10/19] rust: sync: remove unneeded `#[allow(clippy::non_send_fields_in_send_ty)]`
` [PATCH 11/19] rust: introduce `.clippy.toml`
` [PATCH 12/19] rust: replace `clippy::dbg_macro` with `disallowed_macros`
` [PATCH 13/19] rust: rbtree: fix `SAFETY` comments that should be `# Safety` sections
` [PATCH 14/19] rust: provide proper code documentation titles
` [PATCH 15/19] rust: enable Clippy's `check-private-items`
` [PATCH 16/19] Documentation: rust: add coding guidelines on lints
` [PATCH 17/19] rust: start using the `#[expect(...)]` attribute
` [PATCH 18/19] Documentation: rust: discuss `#[expect(...)]` in the guidelines
` [PATCH 19/19] rust: std_vendor: simplify `{ .. macro! .. }` with inner attributes
[RFC PATCH] rust: block: Use 32-bit atomics
2024-09-08 7:19 UTC (3+ messages)
[PATCH] rust: error.rs: Remove dead_code marker and make from_err_ptr, from_result and to_ptr public
2024-09-07 18:19 UTC
[PATCH 2/2] checkpatch: warn on known non-plural rust doc headers
2024-09-06 17:56 UTC (4+ messages)
[PATCH 1/2] rust doc: make section names plural
2024-09-06 16:44 UTC
[PATCH 0/3] rust: Initial MIPS support
2024-09-06 9:03 UTC (3+ messages)
` [PATCH 2/3] MIPS: Rename mips_instruction type to workaround bindgen issue
[PATCH v2 1/2] mm: vmalloc: implement vrealloc()
2024-09-06 7:35 UTC (11+ messages)
[GIT PULL] Rust fixes for 6.11 (2nd)
2024-09-06 3:20 UTC (2+ messages)
[PATCH 0/6] kbuild: rust: add `RUSTC_VERSION` and reconfig/rebuild support
2024-09-05 23:59 UTC (6+ messages)
[PATCH v2 0/6] `RUSTC_VERSION` and re-config/re-build support on compiler change
2024-09-05 20:46 UTC (7+ messages)
` [PATCH v2 1/6] kbuild: rust: add `CONFIG_RUSTC_VERSION`
[PATCH] rust: avoid `box_uninit_write` feature
2024-09-04 21:16 UTC (4+ messages)
[PATCH v2 0/8] DRM Rust abstractions and Nova
2024-09-04 18:30 UTC (4+ messages)
` [PATCH v2 3/8] rust: drm: add driver abstractions
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).