summaryrefslogtreecommitdiff
path: root/rust/kernel/sync
AgeCommit message (Expand)AuthorFilesLines
2025-03-09rust: improve lifetimes markupBorys Tyran1-2/+2
2025-01-28Merge tag 'driver-core-6.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-0/+47
2025-01-22Merge tag 'rust-6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/...Linus Torvalds1-17/+48
2025-01-14rust: kernel: add improved version of `ForeignOwnable::borrow_mut`Alice Ryhl1-0/+7
2025-01-14rust: kernel: reorder `ForeignOwnable` itemsTamir Duberstein1-9/+9
2025-01-14rust: kernel: change `ForeignOwnable` pointer to mutTamir Duberstein1-5/+5
2025-01-14rust: arc: split unsafe block, add missing commentTamir Duberstein1-1/+5
2025-01-14rust: types: avoid `as` castsTamir Duberstein1-4/+5
2025-01-14rust: arc: use `NonNull::new_unchecked`Tamir Duberstein1-4/+8
2025-01-14rust: use derive(CoercePointee) on rustc >= 1.84.0Xiangfei Ding1-4/+11
2024-12-20rust: add rcu abstractionWedson Almeida Filho1-0/+47
2024-12-20rust: sync: Add lock::Backend::assert_is_held()Lyude Paul3-0/+20
2024-12-20rust: sync: Add SpinLockGuard type aliasLyude Paul1-0/+8
2024-12-20rust: sync: Add MutexGuard type aliasLyude Paul1-0/+8
2024-12-20rust: sync: Make Guard::new() publicLyude Paul1-1/+1
2024-12-20rust: sync: Add Lock::from_raw() for Lock<(), B>Lyude Paul1-0/+23
2024-12-18rust: sync: document `PhantomData` in `Arc`Tamir Duberstein1-0/+8
2024-11-27Merge tag 'rust-6.13' of https://github.com/Rust-for-Linux/linuxLinus Torvalds8-32/+368
2024-11-11rust: use custom FFI integer typesGary Guo5-7/+7
2024-11-11rust: sync: add global lock supportAlice Ryhl2-0/+304
2024-10-16rust: treewide: switch to the kernel `Vec` typeDanilo Krummrich1-1/+1
2024-10-15rust: treewide: switch to our kernel `Box` typeDanilo Krummrich4-13/+12
2024-10-10rust: lock: add trylock method support for lock backendFilipe Xavier3-0/+38
2024-10-08Merge patch series "File abstractions needed by Rust Binder"Christian Brauner2-4/+130
2024-10-07rust: enable arbitrary_self_types and remove `Receiver`Gary Guo1-6/+0
2024-10-07rust: provide proper code documentation titlesMiguel Ojeda1-0/+2
2024-10-07rust: sync: remove unneeded `#[allow(clippy::non_send_fields_in_send_ty)]`Miguel Ojeda1-1/+0
2024-10-07rust: enable `clippy::unnecessary_safety_comment` lintMiguel Ojeda1-1/+1
2024-10-07rust: enable `clippy::undocumented_unsafe_blocks` lintMiguel Ojeda2-4/+4
2024-09-30rust: file: add abstraction for `poll_table`Alice Ryhl1-0/+121
2024-09-30rust: types: add `NotThreadSafe`Alice Ryhl1-4/+9
2024-09-26rust: sync: require `T: Sync` for `LockedBy::access`Alice Ryhl1-4/+14
2024-08-19rust: Implement the smart pointer `InPlaceInit` for `Arc`Alex Mantel1-23/+2
2024-05-05rust: kernel: remove redundant importsMiguel Ojeda5-7/+1
2024-05-05rust: sync: add `Arc::into_unique_or_drop`Alice Ryhl1-0/+62
2024-05-05rust: sync: add `ArcBorrow::from_raw`Alice Ryhl1-18/+58
2024-04-16rust: kernel: remove usage of `allocator_api` unstable featureWedson Almeida Filho1-2/+2
2024-04-16rust: init: update `init` module to take allocation flagsWedson Almeida Filho4-13/+16
2024-04-16rust: sync: update `Arc` and `UniqueArc` to take allocation flagsWedson Almeida Filho1-14/+14
2024-04-16rust: alloc: introduce the `BoxExt` traitWedson Almeida Filho1-1/+2
2024-02-18rust: kernel: stop using ptr_metadata featureAlice Ryhl1-9/+7
2024-02-18rust: kernel: add reexports for macrosAlice Ryhl3-4/+6
2024-02-18rust: locked_by: shorten doclink previewValentin Obst1-2/+5
2024-02-18rust: kernel: add doclinksValentin Obst2-6/+13
2024-02-18rust: kernel: mark code fragments in docs with backticksValentin Obst1-1/+1
2024-02-18rust: kernel: unify spelling of refcount in docsValentin Obst1-4/+4
2024-02-18rust: kernel: add srctree-relative doclinksValentin Obst1-0/+2
2024-02-18rust: kernel: fix multiple typos in documentationValentin Obst2-3/+3
2024-01-28rust: sync: update integer types in CondVarAlice Ryhl1-18/+20
2024-01-28rust: sync: add `CondVar::wait_timeout`Alice Ryhl2-8/+56