rust: alloc: make allocator module public

commit a87a36f0bf517dae22f3e3790b05c979070f776a upstream.

Subsequent patches implement allocators such as `Kmalloc`, `Vmalloc`,
`KVmalloc`; we need them to be available outside of the kernel crate as
well.

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-6-dakr@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Danilo Krummrich
2025-03-07 23:49:31 +01:00
committed by Greg Kroah-Hartman
parent e19e92087a
commit 594134eb9c
+1 -1
View File
@@ -4,7 +4,7 @@
#[cfg(not(test))]
#[cfg(not(testlib))]
mod allocator;
pub mod allocator;
pub mod box_ext;
pub mod vec_ext;