aboutsummaryrefslogtreecommitdiffstats
path: root/rust/helpers/slab.c
diff options
context:
space:
mode:
authorDanilo Krummrich <[email protected]>2024-10-04 15:41:13 +0000
committerMiguel Ojeda <[email protected]>2024-10-15 20:56:59 +0000
commit8362c2608ba1be635ffa22a256dfcfe51c6238cc (patch)
treebfc3d85e690eca26563011e21ffaac053a2ffaf2 /rust/helpers/slab.c
parentrust: alloc: implement `Vmalloc` allocator (diff)
downloadkernel-8362c2608ba1be635ffa22a256dfcfe51c6238cc.tar.gz
kernel-8362c2608ba1be635ffa22a256dfcfe51c6238cc.zip
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 <[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] [ Reworded typo. - Miguel ] Signed-off-by: Miguel Ojeda <[email protected]>
Diffstat (limited to 'rust/helpers/slab.c')
-rw-r--r--rust/helpers/slab.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/rust/helpers/slab.c b/rust/helpers/slab.c
index f043e087f9d6..a842bfbddcba 100644
--- a/rust/helpers/slab.c
+++ b/rust/helpers/slab.c
@@ -7,3 +7,9 @@ rust_helper_krealloc(const void *objp, size_t new_size, gfp_t flags)
{
return krealloc(objp, new_size, flags);
}
+
+void * __must_check __realloc_size(2)
+rust_helper_kvrealloc(const void *p, size_t size, gfp_t flags)
+{
+ return kvrealloc(p, size, flags);
+}