aboutsummaryrefslogtreecommitdiffstats
path: root/rust/kernel/alloc (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 Torvalds3-30/+90
2025-10-02Merge tag 'drm-next-2025-10-01' of https://gitlab.freedesktop.org/drm/kernelLinus Torvalds5-3/+240
2025-09-17Merge tag 'drm-rust-next-2025-09-16' of https://gitlab.freedesktop.org/drm/ru...Dave Airlie6-2/+266
2025-09-16rust: alloc: use `kernel::{fmt,prelude::fmt!}`Tamir Duberstein3-3/+3
2025-09-13rust: allocator: add KUnit tests for alignment guaranteesHui Zhu1-0/+56
2025-09-13rust: support large alignments in allocationsVitaly Wool1-21/+9
2025-09-13rust: add support for NUMA ids in allocationsVitaly Wool4-18/+35
2025-09-08Merge tag 'alloc-next-v6.18-2025-09-04' of https://github.com/Rust-for-Linux/...Miguel Ojeda5-135/+111
2025-09-04rust: alloc: kvec: implement AsPageIter for VVecDanilo Krummrich1-1/+39
2025-09-04rust: alloc: layout: implement ArrayLayout::size()Danilo Krummrich1-0/+5
2025-09-04rust: alloc: kbox: implement AsPageIter for VBoxDanilo Krummrich1-1/+39
2025-09-04rust: alloc: implement VmallocPageIterDanilo Krummrich3-0/+134
2025-09-04rust: alloc: vmalloc: implement Vmalloc::to_page()Danilo Krummrich1-0/+49
2025-08-24rust: alloc: remove `allocator_test`Miguel Ojeda1-113/+0
2025-08-21rust: alloc: implement Box::pin_slice()Alice Ryhl1-0/+77
2025-08-17rust: alloc: fix `rusttest` by providing `Cmalloc::aligned_layout` tooMiguel Ojeda1-0/+11
2025-08-15rust: alloc: take the allocator into account for FOREIGN_ALIGNAlice Ryhl1-4/+9
2025-08-15rust: alloc: specify the minimum alignment of each allocatorAlice Ryhl1-0/+8
2025-08-15rust: make `kvec::Vec` functions `const fn`Onur Özkan1-5/+5
2025-08-15rust: make `ArrayLayout::new_unchecked` a `const fn`Onur Özkan1-1/+1
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-08-11rust: alloc: replace aligned_size() with Kmalloc::aligned_layout()Danilo Krummrich1-12/+18
2025-07-15Merge tag 'alloc-next-v6.17-2025-07-15' of https://github.com/Rust-for-Linux/...Miguel Ojeda2-1/+111
2025-07-14rust: types: add FOREIGN_ALIGN to ForeignOwnableAndreas Hindborg1-18/+23
2025-06-22rust: enable `clippy::ptr_as_ptr` lintTamir Duberstein2-3/+3
2025-06-18rust: alloc: implement `Borrow` and `BorrowMut` for `KBox`Alexandre Courbot1-0/+57
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-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/...Miguel Ojeda3-27/+504
2025-05-18Merge tag 'rust-xarray-for-v6.16' of https://github.com/Rust-for-Linux/linux ...Miguel 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