linux/rust/kernel/alloc
Danilo Krummrich 8362c2608b rust: alloc: implement `KVmalloc` allocator
Implement `Allocator` for `KVmalloc`, an `Allocator` that tries to
allocate memory with `kmalloc` first and, on failure, falls back to
`vmalloc`.

All memory allocations made with `KVmalloc` end up in
`kvrealloc_noprof()`; all frees in `kvfree()`.

Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Reviewed-by: Benno Lossin <benno.lossin@proton.me>
Reviewed-by: Gary Guo <gary@garyguo.net>
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Link: https://lore.kernel.org/r/20241004154149.93856-10-dakr@kernel.org
[ Reworded typo. - Miguel ]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
2024-10-15 22:56:59 +02:00
..
allocator.rs rust: alloc: implement `KVmalloc` allocator 2024-10-15 22:56:59 +02:00
allocator_test.rs rust: alloc: implement `KVmalloc` allocator 2024-10-15 22:56:59 +02:00
box_ext.rs Rust changes for v6.12 2024-09-25 10:25:40 -07:00
vec_ext.rs rust: avoid unused import warning in `rusttest` 2024-06-11 23:33:28 +02:00