summaryrefslogtreecommitdiff
path: root/rust/kernel
AgeCommit message (Expand)AuthorFilesLines
2025-03-13rust: enable Clippy's `check-private-items`Miguel Ojeda4-0/+5
2025-03-13rust: provide proper code documentation titlesMiguel Ojeda3-3/+8
2025-03-13rust: replace `clippy::dbg_macro` with `disallowed_macros`Miguel Ojeda1-5/+5
2025-03-13rust: sync: remove unneeded `#[allow(clippy::non_send_fields_in_send_ty)]`Miguel Ojeda1-1/+0
2025-03-13rust: init: remove unneeded `#[allow(clippy::disallowed_names)]`Miguel Ojeda1-4/+0
2025-03-13rust: enable `clippy::ignored_unit_patterns` lintMiguel Ojeda1-1/+1
2025-03-13rust: enable `clippy::unnecessary_safety_comment` lintMiguel Ojeda2-3/+3
2025-03-13rust: enable `clippy::undocumented_unsafe_blocks` lintMiguel Ojeda12-10/+43
2025-03-13rust: types: avoid repetition in `{As,From}Bytes` implsMiguel Ojeda1-33/+35
2025-03-13rust: workqueue: remove unneeded ``#[allow(clippy::new_ret_no_self)]`Miguel Ojeda1-1/+0
2025-03-13rust: block: fix formatting in GenDisk docYutaro Ohno1-3/+3
2025-02-21rust: rbtree: fix overindented list itemMiguel Ojeda1-1/+1
2025-02-17rust: init: use explicit ABI to clean warning in future compilersMiguel Ojeda1-1/+1
2024-12-14rust: enable arbitrary_self_types and remove `Receiver`Gary Guo3-10/+1
2024-12-05rust: block: fix formatting of `kernel::block::mq::request` moduleFrancesco Zardi1-29/+38
2024-12-05rust: kernel: fix THIS_MODULE header path in ThisModule doc commentYutaro Ohno1-1/+1
2024-12-05rust: rbtree: fix `SAFETY` comments that should be `# Safety` sectionsMiguel Ojeda1-3/+6
2024-10-13Merge tag 'driver-core-6.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds2-13/+4
2024-10-03rust: device: change the from_raw() functionGuilherme Giacomo Simoes2-13/+4
2024-10-01rust: kunit: use C-string literals to clean warningMiguel Ojeda1-2/+2
2024-09-26rust: sync: require `T: Sync` for `LockedBy::access`Alice Ryhl1-4/+14
2024-09-26rust: kernel: sort Rust modulesMiguel Ojeda1-1/+1
2024-09-25Merge tag 'rust-6.12' of https://github.com/Rust-for-Linux/linuxLinus Torvalds15-67/+3160
2024-09-05Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski4-9/+9
2024-09-04rust: avoid `box_uninit_write` featureMiguel Ojeda2-11/+12
2024-08-31rust: rbtree: add `RBTree::entry`Alice Ryhl1-75/+230
2024-08-31rust: rbtree: add cursorMatt Gilbride1-0/+523
2024-08-31rust: rbtree: add mutable iteratorWedson Almeida Filho1-14/+89
2024-08-31rust: rbtree: add iteratorWedson Almeida Filho1-18/+112
2024-08-31rust: rbtree: add red-black tree implementation backed by the C versionWedson Almeida Filho2-0/+433
2024-08-30rust: net::phy unified genphy_read_status function for C22 and C45 registersFUJITA Tomonori2-10/+30
2024-08-30rust: net::phy unified read/write API for C22 and C45 registersFUJITA Tomonori2-23/+204
2024-08-30rust: net::phy implement AsRef<kernel::device::Device> traitFUJITA Tomonori1-7/+17
2024-08-30rust: net::phy support probe callbackFUJITA Tomonori1-0/+25
2024-08-30rust: sizes: add commonly used constantsFUJITA Tomonori2-0/+27
2024-08-27rust: alloc: eschew `Box<MaybeUninit<T>>::write`Jubilee Young1-2/+4
2024-08-25rust: types: add `ARef::into_raw`Kartik Prajapati1-1/+30
2024-08-25rust: kernel: use docs.kernel.org links in code documentationMichael Vetter2-11/+11
2024-08-23rust: list: add ListArcFieldAlice Ryhl2-0/+99
2024-08-23rust: list: support heterogeneous listsAlice Ryhl2-1/+177
2024-08-23rust: list: add cursorAlice Ryhl1-0/+82
2024-08-23rust: list: add iteratorsAlice Ryhl1-0/+102
2024-08-23rust: list: add ListAlice Ryhl2-5/+331
2024-08-23rust: list: add macro for implementing ListItemAlice Ryhl2-0/+146
2024-08-23rust: list: add struct with prev/next pointersAlice Ryhl1-0/+119
2024-08-23rust: list: add tracking for ListArcAlice Ryhl2-3/+170
2024-08-23rust: list: add ListArcAlice Ryhl3-0/+361
2024-08-23rust: init: add `assert_pinned` macroBenno Lossin2-0/+97
2024-08-22rust: init: add `write_[pin_]init` functionsBenno Lossin2-25/+61
2024-08-22rust: kernel: add `drop_contents` to `BoxExt`Benno Lossin1-1/+30