aboutsummaryrefslogtreecommitdiff
path: root/rust
AgeCommit message (Expand)AuthorFilesLines
2025-05-11mm: rust: add vm_insert_pageAlice Ryhl1-1/+78
2025-05-11mm: rust: add vm_area_struct methods that require read accessAlice Ryhl3-0/+239
2025-05-11mm: rust: add abstraction for struct mm_structAlice Ryhl4-0/+251
2025-05-12rust: replace rustdoc references to alloc::formatAndrew Ballance2-17/+34
2025-05-12rust: convert raw URLs to Markdown autolinks in commentsXizhe Yin4-4/+4
2025-05-12rust: clarify the language unstable features in useMiguel Ojeda1-7/+21
2025-05-12rust: uaccess: take advantage of the prelude and `Result`'s defaultsMiguel Ojeda1-3/+1
2025-05-12rust: static_assert: add optional messageAltan Ozlu1-2/+7
2025-05-12rust: page: optimize rust symbol generation for PageKunwu Chan1-0/+2
2025-05-07rust: alloc: add Vec::insert_within_capacityAlice Ryhl2-1/+73
2025-05-07rust: alloc: add Vec::removeAlice Ryhl2-1/+52
2025-05-07rust: alloc: add Vec::retainAlice Ryhl1-0/+72
2025-05-07rust: alloc: add Vec::drain_allAlice Ryhl1-0/+59
2025-05-07rust: alloc: add Vec::push_within_capacityAlice Ryhl2-4/+65
2025-05-07rust: alloc: add Vec::popAlice Ryhl1-0/+31
2025-05-07rust: alloc: add Vec::clearAlice Ryhl1-0/+20
2025-05-07rust: clean Rust 1.88.0's `clippy::uninlined_format_args` lintMiguel Ojeda5-49/+34
2025-05-07rust: clean Rust 1.88.0's `unnecessary_transmutes` lintMiguel Ojeda2-0/+2
2025-05-07rust: allow Rust 1.87.0's `clippy::ptr_eq` lintMiguel Ojeda2-0/+6
2025-05-04rust: devres: implement Devres::access()Danilo Krummrich1-0/+38
2025-05-04rust: revocable: implement Revocable::access()Danilo Krummrich1-0/+12
2025-05-01rust: pin-init: improve documentation for `Zeroable` derive macrosBenno Lossin1-6/+18
2025-05-01rust: pin-init: fix typosBenno Lossin1-1/+1
2025-05-01rust: pin-init: add `MaybeZeroable` derive macroBenno Lossin4-1/+120
2025-05-01rust: pin-init: allow `Zeroable` derive macro to also be applied to unionsBenno Lossin1-0/+30
2025-05-01rust: pin-init: allow `pub` fields in `derive(Zeroable)`Benno Lossin1-1/+1
2025-05-01rust: pin-init: Update the structural pinning link in readme.Christian Schrefl2-2/+2
2025-05-01rust: pin-init: Update Changelog and ReadmeChristian Schrefl2-0/+12
2025-05-01rust: pin-init: Implement `Wrapper` for `UnsafePinned` behind feature flag.Christian Schrefl1-0/+12
2025-05-01rust: pin-init: Add the `Wrapper` trait.Christian Schrefl1-0/+44
2025-05-01rust: pin-init: add `cast_[pin_]init` functions to change the initialized typeBenno Lossin1-0/+32
2025-05-01rust: xarray: Add an abstraction for XArrayTamir Duberstein5-0/+311
2025-05-01rust: types: add `ForeignOwnable::PointedTo`Tamir Duberstein6-49/+70
2025-04-29rust: device: conditionally expect `dead_code` for `parent()`Miguel Ojeda1-0/+1
2025-04-29rust: time: Introduce Instant typeFUJITA Tomonori1-38/+39
2025-04-29rust: time: Introduce Delta typeFUJITA Tomonori1-0/+88
2025-04-29rust: time: Add PartialEq/Eq/PartialOrd/Ord trait to KtimeFUJITA Tomonori1-1/+1
2025-04-29rust: hrtimer: Add Ktime temporarilyFUJITA Tomonori5-6/+22
2025-04-28rust: drm: gem: Add GEM object abstractionAsahi Lina7-2/+351
2025-04-25Merge tag 'driver-core-6.15-rc4' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-2/+6
2025-04-24rust: drm: file: Add File abstractionAsahi Lina5-2/+107
2025-04-24rust: drm: add DRM driver registrationAsahi Lina2-1/+60
2025-04-24rust: drm: add device abstractionAsahi Lina4-8/+201
2025-04-24rust: drm: add driver abstractionsAsahi Lina3-0/+122
2025-04-24rust: drm: ioctl: Add DRM ioctl abstractionAsahi Lina5-0/+171
2025-04-23rust: alloc: replace `Vec::set_len` with `inc_len`Tamir Duberstein3-15/+14
2025-04-23rust: alloc: refactor `Vec::truncate` using `dec_len`Tamir Duberstein1-17/+8
2025-04-23rust: alloc: add `Vec::dec_len`Tamir Duberstein1-0/+20
2025-04-23rust: alloc: add Vec::len() <= Vec::capacity invariantTamir Duberstein1-6/+9
2025-04-22rust: alloc: allow coercion from `Box<T>` to `Box<dyn U>` if T implements UAlexandre Courbot1-1/+39