aboutsummaryrefslogtreecommitdiffstats
path: root/rust/kernel/alloc/kvec.rs (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-10-17rust: alloc: employ a trailing comment to keep vertical layoutMiguel Ojeda1-1/+1
2025-10-02Merge tag 'mm-stable-2025-10-01-19-00' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-2/+9
2025-10-02Merge tag 'drm-next-2025-10-01' of https://gitlab.freedesktop.org/drm/kernelLinus Torvalds1-2/+42
2025-09-16rust: alloc: use `kernel::{fmt,prelude::fmt!}`Tamir Duberstein1-1/+1
2025-09-13rust: add support for NUMA ids in allocationsVitaly Wool1-2/+9
2025-09-04rust: alloc: kvec: implement AsPageIter for VVecDanilo Krummrich1-1/+39
2025-08-15rust: make `kvec::Vec` functions `const fn`Onur Özkan1-5/+5
2025-08-13rust: alloc: kvec: simplify KUnit test module name to "rust_kvec"Hui Zhu1-1/+1
2025-08-13rust: alloc: kvec: add doc example for as_slice methodHui Zhu1-0/+10
2025-07-15Merge tag 'alloc-next-v6.17-2025-07-15' of https://github.com/Rust-for-Linux/...Miguel Ojeda1-1/+54
2025-06-22rust: enable `clippy::ptr_as_ptr` lintTamir Duberstein1-2/+2
2025-06-18rust: alloc: implement `Borrow` and `BorrowMut` for `Vec`Alexandre Courbot1-0/+53
2025-06-11rust: vec: impl Default for Vec with any allocatorAlice Ryhl1-1/+1
2025-05-22rust: remove unneeded Rust 1.87.0 `allow(clippy::ptr_eq)`Miguel Ojeda1-3/+0
2025-05-18Merge tag 'alloc-next-v6.16-2025-05-13' of https://github.com/Rust-for-Linux/...Miguel Ojeda1-26/+404
2025-05-07rust: alloc: add Vec::insert_within_capacityAlice Ryhl1-1/+50
2025-05-07rust: alloc: add Vec::removeAlice Ryhl1-1/+37
2025-05-07rust: alloc: add Vec::retainAlice Ryhl1-0/+72
2025-05-07rust: alloc: add Vec::drain_allAlice Ryhl1-0/+59
2025-05-07rust: alloc: add Vec::push_within_capacityAlice Ryhl1-4/+42
2025-05-07rust: alloc: add Vec::popAlice Ryhl1-0/+31
2025-05-07rust: alloc: add Vec::clearAlice Ryhl1-0/+20
2025-05-07rust: allow Rust 1.87.0's `clippy::ptr_eq` lintMiguel Ojeda1-0/+3
2025-04-23rust: alloc: replace `Vec::set_len` with `inc_len`Tamir Duberstein1-13/+12
2025-04-23rust: alloc: refactor `Vec::truncate` using `dec_len`Tamir Duberstein1-17/+8
2025-04-23rust: alloc: add `Vec::dec_len`Tamir Duberstein1-0/+20
2025-04-23rust: alloc: add Vec::len() <= Vec::capacity invariantTamir Duberstein1-6/+9
2025-04-07rust: alloc: use `spare_capacity_mut` to reduce unsafeTamir Duberstein1-8/+3
2025-04-07rust: alloc: add Vec::resize methodAndrew Ballance1-0/+27
2025-04-07rust: alloc: add Vec::truncate methodAndrew Ballance1-0/+35
2025-04-07rust: alloc: add missing invariant in Vec::set_len()Danilo Krummrich1-0/+3
2024-10-15rust: alloc: implement `collect` for `IntoIter`Danilo Krummrich1-0/+95
2024-10-15rust: alloc: implement `IntoIterator` for `Vec`Danilo Krummrich1-0/+170
2024-10-15rust: alloc: implement kernel `Vec` typeDanilo Krummrich1-0/+648