messages from 2024-08-14 08:05:57 to 2024-08-16 07:20:21 UTC [more...]
[PATCH v2 00/19] Implement DWARF modversions
2024-08-16 7:20 UTC (25+ 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 04/19] gendwarfksyms: Add support for type pointers
` [PATCH v2 05/19] gendwarfksyms: Expand base_type
` [PATCH v2 06/19] gendwarfksyms: Add a cache for processed DIEs
` [PATCH v2 07/19] gendwarfksyms: Expand type modifiers and typedefs
` [PATCH v2 08/19] gendwarfksyms: Expand subroutine_type
` [PATCH v2 09/19] gendwarfksyms: Expand array_type
` [PATCH v2 10/19] gendwarfksyms: Expand structure types
` [PATCH v2 11/19] gendwarfksyms: Limit structure expansion
` [PATCH v2 12/19] gendwarfksyms: Add die_map debugging
` [PATCH v2 13/19] gendwarfksyms: Add symtypes output
` [PATCH v2 14/19] gendwarfksyms: Add symbol versioning
` [PATCH v2 15/19] gendwarfksyms: Add support for declaration-only data structures
` [PATCH v2 16/19] gendwarfksyms: Add support for reserved structure fields
` [PATCH v2 17/19] export: Add __gendwarfksyms_ptr_ references to exported symbols
` [PATCH v2 18/19] x86/asm-prototypes: Include <asm/ptrace.h>
` [PATCH v2 19/19] kbuild: Add gendwarfksyms as an alternative to genksyms
[RFC PATCH 0/6] rust: cpufreq: Add cppc_cpufreq driver implementation
2024-08-16 7:06 UTC (11+ messages)
` [RFC PATCH 1/6] ACPI: CPPC: Move struct cppc_cpudata to cppc_cpufreq driver
` [RFC PATCH 2/6] cpufreq: cppc: Remove perf_fb_ctrs field from struct cppc_cpudata
` [RFC PATCH 3/6] rust: module: Allow modules to specify initcall section
` [RFC PATCH 4/6] rust: cpufreq: Add methods to struct Cpufreq
` [RFC PATCH 5/6] rust: bindings: Add bindings for rcppc_cpufreq driver
` [RFC PATCH 6/6] rust: cpufreq: Add rust implementation of cppc_cpufreq driver
[PATCH net-next v3 0/6] net: phy: add Applied Micro QT2025 PHY driver
2024-08-16 6:17 UTC (18+ messages)
` [PATCH net-next v3 1/6] rust: sizes: add commonly used constants
` [PATCH net-next v3 2/6] rust: net::phy support probe callback
` [PATCH net-next v3 3/6] rust: net::phy implement AsRef<kernel::device::Device> trait
` [PATCH net-next v3 4/6] rust: net::phy unified read/write API for C22 and C45 registers
` [PATCH net-next v3 5/6] rust: net::phy unified genphy_read_status function "
` [PATCH net-next v3 6/6] net: phy: add Applied Micro QT2025 PHY driver
[PATCH v6 00/26] Generic `Allocator` support for Rust
2024-08-16 0:11 UTC (27+ messages)
` [PATCH v6 01/26] rust: alloc: add `Allocator` trait
` [PATCH v6 02/26] rust: alloc: separate `aligned_size` from `krealloc_aligned`
` [PATCH v6 03/26] rust: alloc: rename `KernelAllocator` to `Kmalloc`
` [PATCH v6 04/26] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v6 05/26] rust: alloc: add module `allocator_test`
` [PATCH v6 06/26] rust: alloc: implement `Vmalloc` allocator
` [PATCH v6 07/26] rust: alloc: implement `KVmalloc` allocator
` [PATCH v6 08/26] rust: alloc: add __GFP_NOWARN to `Flags`
` [PATCH v6 09/26] rust: alloc: implement kernel `Box`
` [PATCH v6 10/26] rust: treewide: switch to our kernel `Box` type
` [PATCH v6 11/26] rust: alloc: remove `BoxExt` extension
` [PATCH v6 12/26] rust: alloc: add `Box` to prelude
` [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 16/26] rust: treewide: switch to the kernel `Vec` type
` [PATCH v6 17/26] rust: alloc: remove `VecExt` extension
` [PATCH v6 18/26] rust: alloc: add `Vec` to prelude
` [PATCH v6 19/26] rust: error: use `core::alloc::LayoutError`
` [PATCH v6 20/26] rust: error: check for config `test` in `Error::name`
` [PATCH v6 21/26] rust: alloc: implement `contains` for `Flags`
` [PATCH v6 22/26] rust: alloc: implement `Cmalloc` in module allocator_test
` [PATCH v6 23/26] rust: str: test: replace `alloc::format`
` [PATCH v6 24/26] rust: alloc: update module comment of alloc.rs
` [PATCH v6 25/26] kbuild: rust: remove the `alloc` crate and `GlobalAlloc`
` [PATCH v6 26/26] MAINTAINERS: add entry for the Rust `alloc` module
[PATCH v3 0/3] rust: Add irq abstraction, SpinLockIrq
2024-08-15 22:13 UTC (19+ messages)
` [PATCH v3 1/3] rust: Introduce irq module
[PATCH 0/2] rust: fix erranous use of lock class key in rust block device bindings
2024-08-15 21:42 UTC (13+ messages)
` [PATCH 2/2] rust: block: fix wrong usage of lockdep API
[PATCH v3 00/16] Extended MODVERSIONS Support
2024-08-15 20:57 UTC (4+ messages)
` [PATCH v3 14/16] modules: Support extended MODVERSIONS info
[PATCH] rust: add `module_params` macro
2024-08-15 19:33 UTC (12+ messages)
[PATCH v5 00/26] Generic `Allocator` support for Rust
2024-08-15 19:08 UTC (74+ messages)
` [PATCH v5 01/26] rust: alloc: add `Allocator` trait
` [PATCH v5 04/26] rust: alloc: implement `Allocator` for `Kmalloc`
` [PATCH v5 05/26] rust: alloc: add module `allocator_test`
` [PATCH v5 06/26] rust: alloc: implement `Vmalloc` allocator
` [PATCH v5 08/26] rust: alloc: add __GFP_NOWARN to `Flags`
` [PATCH v5 09/26] rust: alloc: implement kernel `Box`
` [PATCH v5 11/26] rust: alloc: remove `BoxExt` extension
` [PATCH v5 13/26] rust: alloc: implement kernel `Vec` type
[PATCH] rust: enable bindgen's `--enable-function-attribute-detection` flag
2024-08-15 18:33 UTC (4+ messages)
[PATCH 1/2] rust: fix export of bss symbols
2024-08-15 18:24 UTC (3+ messages)
[PATCH v3] kbuild: rust: split up helpers.c
2024-08-15 18:23 UTC (5+ messages)
[PATCH V5 0/8] Rust bindings for cpufreq and OPP core + sample driver
2024-08-15 8:30 UTC (3+ messages)
` [PATCH V5 6/8] rust: Extend cpufreq bindings for driver registration
[PATCH v2 0/3] Rust KASAN Support
2024-08-14 11:30 UTC (4+ messages)
` [PATCH v2 1/3] kbuild: rust: Define probing macros for rustc
[PATCH] rust: macros: fix indentation in `module!`'s doc comment
2024-08-14 10:46 UTC (4+ messages)
` Additional patches for rust-fixes? (was: Re: [PATCH] rust: macros: fix indentation in `module!`'s doc comment)
[PATCH v2] kbuild: rust: split up helpers.c
2024-08-14 10:43 UTC (4+ messages)
[PATCH v5 00/10] Add Rust linked list for reference counted values
2024-08-14 8:05 UTC (11+ messages)
` [PATCH v5 01/10] rust: init: add `assert_pinned` macro
` [PATCH v5 02/10] rust: list: add ListArc
` [PATCH v5 03/10] rust: list: add tracking for ListArc
` [PATCH v5 04/10] rust: list: add struct with prev/next pointers
` [PATCH v5 05/10] rust: list: add macro for implementing ListItem
` [PATCH v5 06/10] rust: list: add List
` [PATCH v5 07/10] rust: list: add iterators
` [PATCH v5 08/10] rust: list: add cursor
` [PATCH v5 09/10] rust: list: support heterogeneous lists
` [PATCH v5 10/10] rust: list: add ListArcField
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).