diff options
| author | 2024-10-04 17:41:17 +0200 | |
|---|---|---|
| committer | 2024-10-15 22:56:59 +0200 | |
| commit | e8c6ccdbcaaf31f26c0fffd4073edd0b0147cdc6 (patch) | |
| tree | 84bfb6f8773b7c69048bd4b4ea7010d8e1fae339 /rust/kernel/alloc.rs | |
| parent | rust: treewide: switch to our kernel `Box` type (diff) | |
| download | wireguard-linux-e8c6ccdbcaaf31f26c0fffd4073edd0b0147cdc6.tar.xz wireguard-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; |
