summaryrefslogtreecommitdiff
path: root/rust/kernel/alloc
AgeCommit message (Expand)AuthorFilesLines
2025-08-28rust: alloc: fix `rusttest` by providing `Cmalloc::aligned_layout` tooMiguel Ojeda1-0/+11
2025-08-28rust: alloc: replace aligned_size() with Kmalloc::aligned_layout()Danilo Krummrich1-12/+18
2025-06-19rust: alloc: add missing invariant in Vec::set_len()Danilo Krummrich1-0/+3
2025-05-18rust: allow Rust 1.87.0's `clippy::ptr_eq` lintMiguel Ojeda1-0/+3
2025-03-22rust: alloc: satisfy POSIX alignment requirementTamir Duberstein1-0/+18
2025-03-13rust: alloc: Fix `ArrayLayout` allocationsAsahi Lina1-1/+1
2025-03-13rust: use custom FFI integer typesGary Guo3-9/+9
2025-03-13kbuild: rust: remove the `alloc` crate and `GlobalAlloc`Danilo Krummrich1-63/+2
2025-03-13rust: alloc: implement `Cmalloc` in module allocator_testDanilo Krummrich1-8/+81
2025-03-13rust: alloc: remove `VecExt` extensionDanilo Krummrich1-185/+0
2025-03-13rust: alloc: implement `collect` for `IntoIter`Danilo Krummrich1-0/+95
2025-03-13rust: alloc: implement `IntoIterator` for `Vec`Danilo Krummrich1-0/+170
2025-03-13rust: alloc: implement kernel `Vec` typeDanilo Krummrich1-0/+648
2025-03-13rust: alloc: introduce `ArrayLayout`Benno Lossin1-0/+91
2025-03-13rust: alloc: remove extension of std's `Box`Danilo Krummrich1-89/+0
2025-03-13rust: alloc: implement kernel `Box`Danilo Krummrich1-0/+456
2025-03-13rust: alloc: implement `KVmalloc` allocatorDanilo Krummrich2-0/+37
2025-03-13rust: alloc: implement `Vmalloc` allocatorDanilo Krummrich2-0/+38
2025-03-13rust: alloc: add module `allocator_test`Danilo Krummrich1-0/+20
2025-03-13rust: alloc: implement `Allocator` for `Kmalloc`Danilo Krummrich1-3/+28
2025-03-13rust: alloc: implement `ReallocFunc`Danilo Krummrich1-0/+70
2025-03-13rust: alloc: rename `KernelAllocator` to `Kmalloc`Danilo Krummrich1-3/+3
2025-03-13rust: alloc: separate `aligned_size` from `krealloc_aligned`Danilo Krummrich1-7/+12
2025-03-13rust: enable `clippy::undocumented_unsafe_blocks` lintMiguel Ojeda1-0/+2
2024-09-25Merge tag 'rust-6.12' of https://github.com/Rust-for-Linux/linuxLinus Torvalds1-1/+32
2024-09-04rust: avoid `box_uninit_write` featureMiguel Ojeda1-2/+4
2024-08-27rust: alloc: eschew `Box<MaybeUninit<T>>::write`Jubilee Young1-2/+4
2024-08-22rust: kernel: add `drop_contents` to `BoxExt`Benno Lossin1-1/+30
2024-07-15Merge branch 'slab/for-6.11/buckets' into slab/for-nextVlastimil Babka1-13/+6
2024-07-03slab, rust: extend kmalloc() alignment guarantees to remove Rust paddingVlastimil Babka1-13/+6
2024-06-11rust: avoid unused import warning in `rusttest`Miguel Ojeda1-2/+5
2024-05-08rust: alloc: fix dangling pointer in VecExt<T>::reserve()Danilo Krummrich1-2/+9
2024-05-05rust: kernel: remove redundant importsMiguel Ojeda3-4/+0
2024-04-16rust: kernel: remove usage of `allocator_api` unstable featureWedson Almeida Filho2-4/+3
2024-04-16rust: alloc: update `VecExt` to take allocation flagsWedson Almeida Filho1-15/+143
2024-04-16rust: alloc: introduce the `BoxExt` traitWedson Almeida Filho2-1/+59
2024-04-16rust: alloc: introduce allocation flagsWedson Almeida Filho1-11/+6
2024-04-16rust: alloc: introduce the `VecExt` traitWedson Almeida Filho1-0/+48
2024-04-16rust: kernel: move `allocator` module under `alloc`Wedson Almeida Filho1-0/+88