aboutsummaryrefslogtreecommitdiffstats
path: root/rust/helpers/vmalloc.c
Commit message (Collapse)AuthorAgeFilesLines
* rust: alloc: implement `Vmalloc` allocatorDanilo Krummrich2024-10-151-0/+9
Implement `Allocator` for `Vmalloc`, the kernel's virtually contiguous allocator, typically used for larger objects, (much) larger than page size. All memory allocations made with `Vmalloc` end up in `vrealloc()`. Reviewed-by: Alice Ryhl <[email protected]> Reviewed-by: Benno Lossin <[email protected]> Reviewed-by: Gary Guo <[email protected]> Signed-off-by: Danilo Krummrich <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]>