summaryrefslogtreecommitdiff
path: root/rust/kernel/sync
AgeCommit message (Expand)AuthorFilesLines
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
2024-01-28rust: sync: add `CondVar::notify_sync`Alice Ryhl1-0/+10
2024-01-22rust: sync: `CondVar` rename "wait_list" to "wait_queue_head"Charalampos Mitrodimas1-8/+12
2023-12-21rust: support `srctree`-relative linksMiguel Ojeda3-3/+3
2023-12-21rust: sync: Makes `CondVar::wait()` an uninterruptible waitBoqun Feng1-14/+14
2023-10-31Merge tag 'wq-for-6.7-rust-bindings' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds1-2/+44
2023-10-05rust: kernel: remove `#[allow(clippy::new_ret_no_self)]`Gary Guo2-2/+0
2023-10-05rust: arc: add explicit `drop()` around `Box::from_raw()`Miguel Ojeda1-1/+1
2023-09-25rust: sync: add `Arc::{from_raw, into_raw}`Wedson Almeida Filho1-2/+44
2023-08-29Merge tag 'rust-6.6' of https://github.com/Rust-for-Linux/linuxLinus Torvalds1-3/+3
2023-08-29Merge tag 'linux-kselftest-kunit-6.6-rc1' of git://git.kernel.org/pub/scm/lin...Linus Torvalds3-2/+9
2023-08-07rust: lock: Add intra-doc links to the Backend traitBen Gooding1-3/+3
2023-08-04rust: delete `ForeignOwnable::borrow_mut`Alice Ryhl1-2/+1
2023-07-19rust: sync: make doctests compilable/testableMiguel Ojeda3-2/+9
2023-05-31rust: sync: reword the `Arc` safety comment for `Sync`Alice Ryhl1-3/+5
2023-05-31rust: sync: reword the `Arc` safety comment for `Send`Alice Ryhl1-2/+2
2023-05-31rust: sync: implement `AsRef<T>` for `Arc<T>`Alice Ryhl1-0/+6
2023-05-31rust: sync: add `Arc::ptr_eq`Alice Ryhl1-0/+5
2023-05-31rust: arc: fix intra-doc link in `Arc<T>::init`Miguel Ojeda1-1/+1
2023-04-22rust: sync: introduce `CondVar`Wedson Almeida Filho2-1/+174
2023-04-22rust: lock: add `Guard::do_unlocked`Wedson Almeida Filho2-2/+30
2023-04-22rust: sync: introduce `LockedBy`Wedson Almeida Filho2-1/+157
2023-04-22rust: lock: introduce `SpinLock`Wedson Almeida Filho2-0/+117
2023-04-22rust: lock: introduce `Mutex`Wedson Almeida Filho2-0/+120
2023-04-22rust: sync: introduce `Lock` and `Guard`Wedson Almeida Filho1-0/+162
2023-04-12rust: sync: add functions for initializing `UniqueArc<MaybeUninit<T>>`Benno Lossin1-0/+24
2023-04-12rust: sync: reduce stack usage of `UniqueArc::try_new_uninit`Benno Lossin1-3/+13
2023-04-12rust: init/sync: add `InPlaceInit` trait to pin-initialize smart pointersBenno Lossin1-0/+24
2023-04-12rust: sync: change error type of constructor functionsBenno Lossin1-4/+4
2023-04-12rust: sync: arc: Add UniqueArc<MaybeUninit<T>::assume_init()Asahi Lina1-0/+11
2023-04-11rust: sync: arc: Implement Arc<dyn Any + Send + Sync>::downcast()Asahi Lina2-0/+30
2023-04-10rust: sync: impl {Debug,Display} for {Unique,}ArcBoqun Feng1-0/+25
2023-02-07rust: types: implement `ForeignOwnable` for `Arc<T>`Wedson Almeida Filho1-1/+31
2023-01-17rust: sync: add support for dispatching on Arc and ArcBorrow.Wedson Almeida Filho1-2/+18
2023-01-17rust: sync: introduce `UniqueArc`Wedson Almeida Filho1-2/+150
2023-01-17rust: sync: allow type of `self` to be `ArcBorrow<T>`Wedson Almeida Filho1-0/+23
2023-01-17rust: sync: introduce `ArcBorrow`Wedson Almeida Filho1-0/+97
2023-01-17rust: sync: allow coercion from `Arc<T>` to `Arc<U>`Wedson Almeida Filho1-1/+26
2023-01-17rust: sync: allow type of `self` to be `Arc<T>` or variantsWedson Almeida Filho1-0/+28
2023-01-17rust: sync: add `Arc` for ref-counted allocationsWedson Almeida Filho1-0/+157