summaryrefslogtreecommitdiffstats
path: root/rust/kernel (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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 `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-0712-10/+43
* 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: 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-2515-67/+3160
|\
| * 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
| * rust: rbtree: add mutable iteratorWedson Almeida Filho2024-08-311-14/+89
| * rust: rbtree: add iteratorWedson Almeida Filho2024-08-311-18/+112
| * rust: rbtree: add red-black tree implementation backed by the C versionWedson Almeida Filho2024-08-312-0/+433
| * rust: types: add `ARef::into_raw`Kartik Prajapati2024-08-251-1/+30
| * rust: kernel: use docs.kernel.org links in code documentationMichael Vetter2024-08-252-11/+11
| * rust: list: add ListArcFieldAlice Ryhl2024-08-232-0/+99
| * rust: list: support heterogeneous listsAlice Ryhl2024-08-232-1/+177
| * rust: list: add cursorAlice Ryhl2024-08-231-0/+82
| * rust: list: add iteratorsAlice Ryhl2024-08-231-0/+102
| * rust: list: add ListAlice Ryhl2024-08-232-5/+331
| * rust: list: add macro for implementing ListItemAlice Ryhl2024-08-232-0/+146
| * rust: list: add struct with prev/next pointersAlice Ryhl2024-08-231-0/+119
| * rust: list: add tracking for ListArcAlice Ryhl2024-08-232-3/+170
| * rust: list: add ListArcAlice Ryhl2024-08-233-0/+361
| * rust: init: add `assert_pinned` macroBenno Lossin2024-08-232-0/+97
| * rust: init: add `write_[pin_]init` functionsBenno Lossin2024-08-222-25/+61
| * rust: kernel: add `drop_contents` to `BoxExt`Benno Lossin2024-08-221-1/+30
| * rust: error: allow `useless_conversion` for 32-bit buildsMiguel Ojeda2024-08-181-1/+4
| * rust: types: improve `ForeignOwnable` documentationBenno Lossin2024-08-181-1/+4
| * rust: implement ForeignOwnable for Pin<Box<T>>Alice Ryhl2024-08-181-0/+27
| * rust: Implement the smart pointer `InPlaceInit` for `Arc`Alex Mantel2024-08-182-27/+37
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2024-09-064-9/+9
|\ \
| * | rust: alloc: eschew `Box<MaybeUninit<T>>::write`Jubilee Young2024-08-271-2/+4
| * | rust: kernel: fix typos in code commentsMichael Vetter2024-08-212-3/+3
| * | rust: block: fix wrong usage of lockdep APIAndreas Hindborg2024-08-211-4/+2
| |/
* | rust: net::phy unified genphy_read_status function for C22 and C45 registersFUJITA Tomonori2024-08-302-10/+30
* | rust: net::phy unified read/write API for C22 and C45 registersFUJITA Tomonori2024-08-302-23/+204
* | rust: net::phy implement AsRef<kernel::device::Device> traitFUJITA Tomonori2024-08-301-7/+17