diff options
author | Danilo Krummrich <dakr@kernel.org> | 2024-10-04 17:41:17 +0200 |
---|---|---|
committer | Miguel Ojeda <ojeda@kernel.org> | 2024-10-15 22:56:59 +0200 |
commit | e8c6ccdbcaaf31f26c0fffd4073edd0b0147cdc6 (patch) | |
tree | 84bfb6f8773b7c69048bd4b4ea7010d8e1fae339 /rust/kernel/alloc.rs | |
parent | 8373147ce4961665c5700016b1c76299e962d077 (diff) | |
download | linux-e8c6ccdbcaaf31f26c0fffd4073edd0b0147cdc6.tar.gz linux-e8c6ccdbcaaf31f26c0fffd4073edd0b0147cdc6.tar.bz2 linux-e8c6ccdbcaaf31f26c0fffd4073edd0b0147cdc6.zip |
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 <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-14-dakr@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust/kernel/alloc.rs')
-rw-r--r-- | rust/kernel/alloc.rs | 1 |
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; |