aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/rust/kernel/alloc (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-05-25rust: alloc: add missing Markdown code spanMiguel Ojeda1-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/linux into rust-nextMiguel Ojeda3-27/+504
2025-05-18Merge tag 'rust-xarray-for-v6.16' of https://github.com/Rust-for-Linux/linux into rust-nextMiguel Ojeda1-18/+20
2025-05-12rust: convert raw URLs to Markdown autolinks in commentsXizhe Yin1-1/+1
2025-05-07rust: alloc: add Vec::insert_within_capacityAlice Ryhl2-1/+73
2025-05-07rust: alloc: add Vec::removeAlice Ryhl2-1/+52
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 Ryhl2-4/+65
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-05-01rust: types: add `ForeignOwnable::PointedTo`Tamir Duberstein1-18/+20
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-22rust: alloc: allow coercion from `Box<T>` to `Box<dyn U>` if T implements UAlexandre Courbot1-1/+39
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
2025-03-30Merge tag 'rust-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linuxLinus Torvalds2-1/+13
2025-03-25Merge tag 'rust-hrtimer-for-v6.15-v3' of https://github.com/Rust-for-Linux/linux into rust-nextMiguel Ojeda1-0/+6
2025-03-22rust: alloc: add `Box::into_pin`Andreas Hindborg1-0/+6
2025-03-16rust: make pin-init its own crateBenno Lossin1-2/+2
2025-03-16rust: add `ZeroableOption` and implement it instead of `Zeroable` for `Option<Box<T, A>>`Benno Lossin1-2/+2
2025-03-16rust: pin-init: move impl `Zeroable` for `Opaque` and `Option<KBox<T>>` into the kernel crateBenno Lossin1-1/+7
2025-03-16rust: pin-init: move `InPlaceInit` and impls of `InPlaceWrite` into the kernel crateBenno Lossin1-1/+2
2025-03-06rust: alloc: make `ReallocFunc::call` inlineGary Guo1-0/+1
2025-03-05rust: alloc: satisfy POSIX alignment requirementTamir Duberstein1-0/+18
2025-01-13rust: kernel: add improved version of `ForeignOwnable::borrow_mut`Alice Ryhl1-0/+21
2025-01-13rust: kernel: change `ForeignOwnable` pointer to mutTamir Duberstein1-8/+8
2025-01-13rust: types: avoid `as` castsTamir Duberstein1-4/+4
2025-01-13rust: alloc: add doctest for `ArrayLayout::new()`Jimmy Ostler1-0/+19
2024-12-18rust: alloc: align Debug implementation for Box with DisplayGuangbo Cui1-1/+1
2024-12-18rust: alloc: implement Display for BoxGuangbo Cui1-0/+10
2024-11-25rust: alloc: Fix `ArrayLayout` allocationsAsahi Lina1-1/+1
2024-11-10rust: use custom FFI integer typesGary Guo3-9/+9
2024-10-15kbuild: rust: remove the `alloc` crate and `GlobalAlloc`Danilo Krummrich1-63/+2
2024-10-15rust: alloc: implement `Cmalloc` in module allocator_testDanilo Krummrich1-8/+81
2024-10-15rust: alloc: remove `VecExt` extensionDanilo Krummrich1-185/+0
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
2024-10-15rust: alloc: introduce `ArrayLayout`Benno Lossin1-0/+91
2024-10-15rust: alloc: remove extension of std's `Box`Danilo Krummrich1-89/+0
2024-10-15rust: alloc: implement kernel `Box`Danilo Krummrich1-0/+456
2024-10-15rust: alloc: implement `KVmalloc` allocatorDanilo Krummrich2-0/+37