summaryrefslogtreecommitdiffstats
path: root/rust
AgeCommit message (Expand)AuthorLines
2024-10-07rust: enable `clippy::undocumented_unsafe_blocks` lintMiguel Ojeda-10/+45
2024-10-07rust: types: avoid repetition in `{As,From}Bytes` implsMiguel Ojeda-33/+35
2024-10-07rust: workqueue: remove unneeded ``#[allow(clippy::new_ret_no_self)]`Miguel Ojeda-1/+0
2024-10-07rust: types: add examples for the `Either` typeNell Shamrell-Harrington-0/+9
2024-10-03rust: net::phy always define device_table in module_phy_driver macroFUJITA Tomonori-6/+10
2024-10-03rust: device: change the from_raw() functionGuilherme Giacomo Simoes-13/+4
2024-10-01rust: kunit: use C-string literals to clean warningMiguel Ojeda-2/+2
2024-09-30rust: file: add abstraction for `poll_table`Alice Ryhl-0/+123
2024-09-30rust: file: add `Kuid` wrapperAlice Ryhl-2/+108
2024-09-30rust: file: add `FileDescriptorReservation`Wedson Almeida Filho-1/+74
2024-09-30rust: security: add abstraction for secctxAlice Ryhl-0/+105
2024-09-30rust: cred: add Rust abstraction for `struct cred`Wedson Almeida Filho-0/+105
2024-09-30rust: file: add Rust abstraction for `struct file`Wedson Almeida Filho-0/+399
2024-09-30rust: task: add `Task::current_raw`Alice Ryhl-4/+11
2024-09-30rust: types: add `NotThreadSafe`Alice Ryhl-8/+36
2024-09-26rust: mutex: fix __mutex_init() usage in case of PREEMPT_RTDirk Behme-0/+6
2024-09-26rust: fix `ARCH_SLAB_MINALIGN` multiple definition errorGary Guo-0/+5
2024-09-26rust: sync: require `T: Sync` for `LockedBy::access`Alice Ryhl-4/+14
2024-09-26rust: kernel: sort Rust modulesMiguel Ojeda-1/+1
2024-09-25Merge tag 'rust-6.12' of https://github.com/Rust-for-Linux/linuxLinus Torvalds-326/+3481
2024-09-16rust: cfi: add support for CFI_CLANG with RustMatthew Maurer-1/+1
2024-09-05Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski-11/+15
2024-09-05kbuild: rust: replace proc macros dependency on `core.o` with the version textMiguel Ojeda-3/+5
2024-09-05kbuild: rust: rebuild if the version text changesMiguel Ojeda-1/+2
2024-09-04rust: avoid `box_uninit_write` featureMiguel Ojeda-11/+12
2024-09-02rust: macros: provide correct provenance when constructing THIS_MODULEBoqun Feng-1/+5
2024-08-31rust: rbtree: add `RBTree::entry`Alice Ryhl-75/+230
2024-08-31rust: rbtree: add cursorMatt Gilbride-0/+523
2024-08-31rust: rbtree: add mutable iteratorWedson Almeida Filho-14/+89
2024-08-31rust: rbtree: add iteratorWedson Almeida Filho-18/+112
2024-08-31rust: rbtree: add red-black tree implementation backed by the C versionWedson Almeida Filho-0/+443
2024-08-30rust: net::phy unified genphy_read_status function for C22 and C45 registersFUJITA Tomonori-10/+30
2024-08-30rust: net::phy unified read/write API for C22 and C45 registersFUJITA Tomonori-23/+205
2024-08-30rust: net::phy implement AsRef<kernel::device::Device> traitFUJITA Tomonori-7/+17
2024-08-30rust: net::phy support probe callbackFUJITA Tomonori-0/+25
2024-08-30rust: sizes: add commonly used constantsFUJITA Tomonori-0/+27
2024-08-27rust: alloc: eschew `Box<MaybeUninit<T>>::write`Jubilee Young-2/+4
2024-08-25rust: enable rustdoc's `--generate-link-to-definition`Miguel Ojeda-0/+1
2024-08-25rust: types: add `ARef::into_raw`Kartik Prajapati-1/+30
2024-08-25rust: kernel: use docs.kernel.org links in code documentationMichael Vetter-11/+11
2024-08-23rust: list: add ListArcFieldAlice Ryhl-0/+99
2024-08-23rust: list: support heterogeneous listsAlice Ryhl-1/+177
2024-08-23rust: list: add cursorAlice Ryhl-0/+82
2024-08-23rust: list: add iteratorsAlice Ryhl-0/+102
2024-08-23rust: list: add ListAlice Ryhl-5/+331
2024-08-23rust: list: add macro for implementing ListItemAlice Ryhl-0/+146
2024-08-23rust: list: add struct with prev/next pointersAlice Ryhl-0/+119
2024-08-23rust: list: add tracking for ListArcAlice Ryhl-3/+170
2024-08-23rust: list: add ListArcAlice Ryhl-0/+361
2024-08-23rust: init: add `assert_pinned` macroBenno Lossin-0/+97