aboutsummaryrefslogtreecommitdiff
path: root/rust/kernel/alloc.rs
diff options
context:
space:
mode:
authorDanilo Krummrich <[email protected]>2024-10-04 17:41:17 +0200
committerMiguel Ojeda <[email protected]>2024-10-15 22:56:59 +0200
commite8c6ccdbcaaf31f26c0fffd4073edd0b0147cdc6 (patch)
tree84bfb6f8773b7c69048bd4b4ea7010d8e1fae339 /rust/kernel/alloc.rs
parent8373147ce4961665c5700016b1c76299e962d077 (diff)
rust: alloc: remove extension of std's `Box`
Now that all existing `Box` users were moved to the kernel `Box` type, remove the `BoxExt` extension and all other related extensions. 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]>
Diffstat (limited to 'rust/kernel/alloc.rs')
-rw-r--r--rust/kernel/alloc.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/kernel/alloc.rs b/rust/kernel/alloc.rs
index 3628e16240a6..94f4de5e0cdc 100644
--- a/rust/kernel/alloc.rs
+++ b/rust/kernel/alloc.rs
@@ -4,7 +4,6 @@
#[cfg(not(any(test, testlib)))]
pub mod allocator;
-pub mod box_ext;
pub mod kbox;
pub mod vec_ext;