summaryrefslogtreecommitdiffstats
path: root/rust (follow)
Commit message (Expand)AuthorAgeFilesLines
* rust: alloc: implement `IntoIterator` for `Vec`Danilo Krummrich2024-10-152-0/+171
* rust: alloc: implement kernel `Vec` typeDanilo Krummrich2024-10-154-1/+656
* rust: alloc: introduce `ArrayLayout`Benno Lossin2024-10-152-0/+92
* rust: alloc: add `Box` to preludeDanilo Krummrich2024-10-151-1/+1
* rust: alloc: remove extension of std's `Box`Danilo Krummrich2024-10-156-188/+3
* rust: treewide: switch to our kernel `Box` typeDanilo Krummrich2024-10-159-74/+79
* rust: alloc: implement kernel `Box`Danilo Krummrich2024-10-153-1/+463
* rust: alloc: add __GFP_NOWARN to `Flags`Danilo Krummrich2024-10-152-0/+6
* rust: alloc: implement `KVmalloc` allocatorDanilo Krummrich2024-10-153-0/+43
* rust: alloc: implement `Vmalloc` allocatorDanilo Krummrich2024-10-154-0/+48
* rust: alloc: add module `allocator_test`Danilo Krummrich2024-10-152-2/+27
* rust: alloc: implement `Allocator` for `Kmalloc`Danilo Krummrich2024-10-151-3/+28
* rust: alloc: make `allocator` module publicDanilo Krummrich2024-10-151-1/+1
* rust: alloc: implement `ReallocFunc`Danilo Krummrich2024-10-152-0/+79
* rust: alloc: rename `KernelAllocator` to `Kmalloc`Danilo Krummrich2024-10-141-3/+3
* rust: alloc: separate `aligned_size` from `krealloc_aligned`Danilo Krummrich2024-10-141-7/+12
* rust: alloc: add `Allocator` traitDanilo Krummrich2024-10-141-0/+101
* rust: kernel: move `FromBytes` and `AsBytes` traits to a new `transmute` moduleAliet Exposito Garcia2024-10-104-69/+73
* rust: error: optimize error type to use nonzeroFilipe Xavier2024-10-101-9/+28
* rust: lock: add trylock method support for lock backendFilipe Xavier2024-10-104-0/+43
* rust: std_vendor: update dbg macro from Rust upstreamDeepak Thukral2024-10-101-11/+11
* rust: error: make conversion functions publicFilipe Xavier2024-10-071-9/+4
* rust: enable arbitrary_self_types and remove `Receiver`Gary Guo2024-10-073-10/+1
* rust: std_vendor: simplify `{ .. macro! .. }` with inner attributesMiguel Ojeda2024-10-071-6/+2
* rust: start using the `#[expect(...)]` attributeMiguel Ojeda2024-10-079-28/+29
* rust: enable Clippy's `check-private-items`Miguel Ojeda2024-10-074-0/+5
* rust: provide proper code documentation titlesMiguel Ojeda2024-10-073-3/+8
* rust: rbtree: fix `SAFETY` comments that should be `# Safety` sectionsMiguel Ojeda2024-10-071-3/+6
* rust: replace `clippy::dbg_macro` with `disallowed_macros`Miguel Ojeda2024-10-071-5/+5
* rust: sync: remove unneeded `#[allow(clippy::non_send_fields_in_send_ty)]`Miguel Ojeda2024-10-071-1/+0
* rust: init: remove unneeded `#[allow(clippy::disallowed_names)]`Miguel Ojeda2024-10-071-4/+0
* rust: enable `rustdoc::unescaped_backticks` lintMiguel Ojeda2024-10-071-1/+4
* rust: enable `clippy::ignored_unit_patterns` lintMiguel Ojeda2024-10-071-1/+1
* rust: enable `clippy::unnecessary_safety_comment` lintMiguel Ojeda2024-10-072-3/+3
* rust: enable `clippy::undocumented_unsafe_blocks` lintMiguel Ojeda2024-10-0714-10/+45
* rust: types: avoid repetition in `{As,From}Bytes` implsMiguel Ojeda2024-10-071-33/+35
* rust: workqueue: remove unneeded ``#[allow(clippy::new_ret_no_self)]`Miguel Ojeda2024-10-071-1/+0
* rust: types: add examples for the `Either` typeNell Shamrell-Harrington2024-10-071-0/+9
* rust: kunit: use C-string literals to clean warningMiguel Ojeda2024-10-011-2/+2
* rust: mutex: fix __mutex_init() usage in case of PREEMPT_RTDirk Behme2024-09-261-0/+6
* rust: fix `ARCH_SLAB_MINALIGN` multiple definition errorGary Guo2024-09-261-0/+5
* rust: sync: require `T: Sync` for `LockedBy::access`Alice Ryhl2024-09-261-4/+14
* rust: kernel: sort Rust modulesMiguel Ojeda2024-09-261-1/+1
* Merge tag 'rust-6.12' of https://github.com/Rust-for-Linux/linuxLinus Torvalds2024-09-2539-326/+3481
|\
| * rust: cfi: add support for CFI_CLANG with RustMatthew Maurer2024-09-161-1/+1
| * kbuild: rust: replace proc macros dependency on `core.o` with the version textMiguel Ojeda2024-09-052-3/+5
| * kbuild: rust: rebuild if the version text changesMiguel Ojeda2024-09-051-1/+2
| * rust: avoid `box_uninit_write` featureMiguel Ojeda2024-09-042-11/+12
| * rust: rbtree: add `RBTree::entry`Alice Ryhl2024-08-311-75/+230
| * rust: rbtree: add cursorMatt Gilbride2024-08-311-0/+523