summaryrefslogtreecommitdiff
path: root/rust
AgeCommit message (Expand)AuthorFilesLines
5 daysrust: alloc: fix `rusttest` by providing `Cmalloc::aligned_layout` tooMiguel Ojeda1-0/+11
5 daysrust: alloc: replace aligned_size() with Kmalloc::aligned_layout()Danilo Krummrich1-12/+18
13 daysrust: workaround `rustdoc` target modifiers bugMiguel Ojeda1-0/+6
13 daysrust: kbuild: clean output before running `rustdoc`Miguel Ojeda1-2/+5
2025-07-24rust: use `#[used(compiler)]` to fix build and `modpost` with Rust >= 1.89.0Miguel Ojeda3-5/+7
2025-07-17rust: init: allow `dead_code` warnings for Rust >= 1.89.0Miguel Ojeda1-0/+2
2025-07-06rust: arm: fix unknown (to Clang) argument '-mno-fdpic'Rudraksha Gupta1-1/+1
2025-07-06rust: module: place cleanup_module() in .exit.text sectionFUJITA Tomonori1-0/+1
2025-06-27rust: compile libcore with edition 2024 for 1.87+Gary Guo1-6/+8
2025-06-19rust: alloc: add missing invariant in Vec::set_len()Danilo Krummrich1-0/+3
2025-05-18rust: clean Rust 1.88.0's `clippy::uninlined_format_args` lintMiguel Ojeda3-39/+29
2025-05-18rust: allow Rust 1.87.0's `clippy::ptr_eq` lintMiguel Ojeda2-0/+6
2025-05-18rust: clean Rust 1.88.0's `unnecessary_transmutes` lintMiguel Ojeda2-0/+2
2025-05-02rust: firmware: Use `ffi::c_char` type in `FwFunc`Christian Schrefl1-2/+6
2025-04-10rust: Fix enabling Rust and building with GCC for LoongArchWANG Rui1-1/+3
2025-04-10rust: fix signature of rust_fmt_argumentAlice Ryhl1-4/+3
2025-03-22rust: init: add missing newline to pr_info! callsAlban Kurti2-9/+9
2025-03-22rust: error: add missing newline to pr_warn! callsAlban Kurti1-1/+1
2025-03-22rust: init: fix `Zeroable` implementation for `Option<NonNull<T>>` and `Optio...Benno Lossin1-7/+4
2025-03-22rust: alloc: satisfy POSIX alignment requirementTamir Duberstein1-0/+18
2025-03-22rust: remove leftover mentions of the `alloc` crateMiguel Ojeda1-1/+1
2025-03-22rust: lockdep: Remove support for dynamically allocated LockClassKeysMitchell Levy1-12/+4
2025-03-13rust: map `long` to `isize` and `char` to `u8`Gary Guo4-26/+45
2025-03-13rust: alloc: Fix `ArrayLayout` allocationsAsahi Lina1-1/+1
2025-03-13rust: use custom FFI integer typesGary Guo23-83/+107
2025-03-13rust: map `__kernel_size_t` and friends also to usize/isizeGary Guo3-0/+15
2025-03-13rust: fix size_t in bindgen prototypes of C builtinsGary Guo1-1/+5
2025-03-13rust: kbuild: expand rusttest target for macrosEthan D. Twardy2-5/+14
2025-03-13kbuild: rust: remove the `alloc` crate and `GlobalAlloc`Danilo Krummrich3-97/+12
2025-03-13rust: alloc: update module comment of alloc.rsDanilo Krummrich1-1/+1
2025-03-13rust: str: test: replace `alloc::format`Danilo Krummrich1-1/+22
2025-03-13rust: alloc: implement `Cmalloc` in module allocator_testDanilo Krummrich2-9/+81
2025-03-13rust: alloc: implement `contains` for `Flags`Danilo Krummrich1-1/+6
2025-03-13rust: error: check for config `test` in `Error::name`Danilo Krummrich1-2/+2
2025-03-13rust: error: use `core::alloc::LayoutError`Danilo Krummrich1-1/+1
2025-03-13rust: alloc: add `Vec` to preludeDanilo Krummrich1-1/+1
2025-03-13rust: alloc: remove `VecExt` extensionDanilo Krummrich3-190/+1
2025-03-13rust: treewide: switch to the kernel `Vec` typeDanilo Krummrich5-22/+17
2025-03-13rust: alloc: implement `collect` for `IntoIter`Danilo Krummrich1-0/+95
2025-03-13rust: alloc: implement `IntoIterator` for `Vec`Danilo Krummrich2-0/+171
2025-03-13rust: alloc: implement kernel `Vec` typeDanilo Krummrich4-1/+656
2025-03-13rust: alloc: introduce `ArrayLayout`Benno Lossin2-0/+92
2025-03-13rust: alloc: add `Box` to preludeDanilo Krummrich1-1/+1
2025-03-13rust: alloc: remove extension of std's `Box`Danilo Krummrich6-188/+3
2025-03-13rust: treewide: switch to our kernel `Box` typeDanilo Krummrich9-74/+79
2025-03-13rust: alloc: implement kernel `Box`Danilo Krummrich3-1/+463
2025-03-13rust: alloc: add __GFP_NOWARN to `Flags`Danilo Krummrich2-0/+6
2025-03-13rust: alloc: implement `KVmalloc` allocatorDanilo Krummrich3-0/+43
2025-03-13rust: alloc: implement `Vmalloc` allocatorDanilo Krummrich4-0/+48
2025-03-13rust: alloc: add module `allocator_test`Danilo Krummrich2-2/+27