diff options
author | Danilo Krummrich <dakr@kernel.org> | 2024-10-04 18:41:24 +0300 |
---|---|---|
committer | Miguel Ojeda <ojeda@kernel.org> | 2024-10-16 00:10:32 +0300 |
commit | 405966efc789888c3e1a53cd09d2c2b338064438 (patch) | |
tree | 3a740203cbb4592ea3bf84929ddd599e3f4eac0b /rust/kernel/alloc.rs | |
parent | 58eff8e872bd04ccb3adcf99aec7334ffad06cfd (diff) | |
download | linux-405966efc789888c3e1a53cd09d2c2b338064438.tar.xz |
rust: alloc: remove `VecExt` extension
Now that all existing `Vec` users were moved to the kernel `Vec` type,
remove the `VecExt` extension.
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-21-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 86d2077a8e64..7fc2e404e594 100644 --- a/rust/kernel/alloc.rs +++ b/rust/kernel/alloc.rs @@ -7,7 +7,6 @@ pub mod allocator; pub mod kbox; pub mod kvec; pub mod layout; -pub mod vec_ext; #[cfg(any(test, testlib))] pub mod allocator_test; |