summaryrefslogtreecommitdiff
path: root/rust/kernel
AgeCommit message (Expand)AuthorFilesLines
2024-10-07rust: error: make conversion functions publicFilipe Xavier1-9/+4
2024-10-07rust: enable arbitrary_self_types and remove `Receiver`Gary Guo3-10/+1
2024-10-07rust: std_vendor: simplify `{ .. macro! .. }` with inner attributesMiguel Ojeda1-6/+2
2024-10-07rust: start using the `#[expect(...)]` attributeMiguel Ojeda9-28/+29
2024-10-07rust: enable Clippy's `check-private-items`Miguel Ojeda4-0/+5
2024-10-07rust: provide proper code documentation titlesMiguel Ojeda3-3/+8
2024-10-07rust: rbtree: fix `SAFETY` comments that should be `# Safety` sectionsMiguel Ojeda1-3/+6
2024-10-07rust: replace `clippy::dbg_macro` with `disallowed_macros`Miguel Ojeda1-5/+5
2024-10-07rust: sync: remove unneeded `#[allow(clippy::non_send_fields_in_send_ty)]`Miguel Ojeda1-1/+0
2024-10-07rust: init: remove unneeded `#[allow(clippy::disallowed_names)]`Miguel Ojeda1-4/+0
2024-10-07rust: enable `clippy::ignored_unit_patterns` lintMiguel Ojeda1-1/+1
2024-10-07rust: enable `clippy::unnecessary_safety_comment` lintMiguel Ojeda2-3/+3
2024-10-07rust: enable `clippy::undocumented_unsafe_blocks` lintMiguel Ojeda12-10/+43
2024-10-07rust: types: avoid repetition in `{As,From}Bytes` implsMiguel Ojeda1-33/+35
2024-10-07rust: workqueue: remove unneeded ``#[allow(clippy::new_ret_no_self)]`Miguel Ojeda1-1/+0
2024-10-07rust: types: add examples for the `Either` typeNell Shamrell-Harrington1-0/+9
2024-10-04rust: net::phy always define device_table in module_phy_driver macroFUJITA Tomonori1-6/+10
2024-10-03rust: device: change the from_raw() functionGuilherme Giacomo Simoes2-13/+4
2024-10-02rust: kunit: use C-string literals to clean warningMiguel Ojeda1-2/+2
2024-09-30rust: file: add abstraction for `poll_table`Alice Ryhl2-0/+122
2024-09-30rust: file: add `Kuid` wrapperAlice Ryhl2-2/+69
2024-09-30rust: file: add `FileDescriptorReservation`Wedson Almeida Filho1-1/+74
2024-09-30rust: security: add abstraction for secctxAlice Ryhl3-0/+83
2024-09-30rust: cred: add Rust abstraction for `struct cred`Wedson Almeida Filho3-0/+90
2024-09-30rust: file: add Rust abstraction for `struct file`Wedson Almeida Filho3-0/+384
2024-09-30rust: task: add `Task::current_raw`Alice Ryhl1-4/+11
2024-09-30rust: types: add `NotThreadSafe`Alice Ryhl3-8/+36
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-06Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski4-9/+9
2024-09-05rust: 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