summaryrefslogtreecommitdiff
path: root/rust/kernel/sync
AgeCommit message (Expand)Author
2024-05-05rust: kernel: remove redundant importsMiguel Ojeda
2024-05-05rust: sync: add `Arc::into_unique_or_drop`Alice Ryhl
2024-05-05rust: sync: add `ArcBorrow::from_raw`Alice Ryhl
2024-04-16rust: kernel: remove usage of `allocator_api` unstable featureWedson Almeida Filho
2024-04-16rust: init: update `init` module to take allocation flagsWedson Almeida Filho
2024-04-16rust: sync: update `Arc` and `UniqueArc` to take allocation flagsWedson Almeida Filho
2024-04-16rust: alloc: introduce the `BoxExt` traitWedson Almeida Filho
2024-02-18rust: kernel: stop using ptr_metadata featureAlice Ryhl
2024-02-18rust: kernel: add reexports for macrosAlice Ryhl
2024-02-18rust: locked_by: shorten doclink previewValentin Obst
2024-02-18rust: kernel: add doclinksValentin Obst
2024-02-18rust: kernel: mark code fragments in docs with backticksValentin Obst
2024-02-18rust: kernel: unify spelling of refcount in docsValentin Obst
2024-02-18rust: kernel: add srctree-relative doclinksValentin Obst
2024-02-18rust: kernel: fix multiple typos in documentationValentin Obst
2024-01-28rust: sync: update integer types in CondVarAlice Ryhl
2024-01-28rust: sync: add `CondVar::wait_timeout`Alice Ryhl
2024-01-28rust: sync: add `CondVar::notify_sync`Alice Ryhl
2024-01-22rust: sync: `CondVar` rename "wait_list" to "wait_queue_head"Charalampos Mitrodimas
2023-12-21rust: support `srctree`-relative linksMiguel Ojeda
2023-12-21rust: sync: Makes `CondVar::wait()` an uninterruptible waitBoqun Feng
2023-10-30Merge tag 'wq-for-6.7-rust-bindings' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds
2023-10-05rust: kernel: remove `#[allow(clippy::new_ret_no_self)]`Gary Guo
2023-10-05rust: arc: add explicit `drop()` around `Box::from_raw()`Miguel Ojeda
2023-09-25rust: sync: add `Arc::{from_raw, into_raw}`Wedson Almeida Filho
2023-08-29Merge tag 'rust-6.6' of https://github.com/Rust-for-Linux/linuxLinus Torvalds
2023-08-28Merge tag 'linux-kselftest-kunit-6.6-rc1' of git://git.kernel.org/pub/scm/lin...Linus Torvalds
2023-08-07rust: lock: Add intra-doc links to the Backend traitBen Gooding
2023-08-04rust: delete `ForeignOwnable::borrow_mut`Alice Ryhl
2023-07-19rust: sync: make doctests compilable/testableMiguel Ojeda
2023-05-31rust: sync: reword the `Arc` safety comment for `Sync`Alice Ryhl
2023-05-31rust: sync: reword the `Arc` safety comment for `Send`Alice Ryhl
2023-05-31rust: sync: implement `AsRef<T>` for `Arc<T>`Alice Ryhl
2023-05-31rust: sync: add `Arc::ptr_eq`Alice Ryhl
2023-05-31rust: arc: fix intra-doc link in `Arc<T>::init`Miguel Ojeda
2023-04-22rust: sync: introduce `CondVar`Wedson Almeida Filho
2023-04-22rust: lock: add `Guard::do_unlocked`Wedson Almeida Filho
2023-04-22rust: sync: introduce `LockedBy`Wedson Almeida Filho
2023-04-22rust: lock: introduce `SpinLock`Wedson Almeida Filho
2023-04-22rust: lock: introduce `Mutex`Wedson Almeida Filho
2023-04-22rust: sync: introduce `Lock` and `Guard`Wedson Almeida Filho
2023-04-12rust: sync: add functions for initializing `UniqueArc<MaybeUninit<T>>`Benno Lossin
2023-04-12rust: sync: reduce stack usage of `UniqueArc::try_new_uninit`Benno Lossin
2023-04-12rust: init/sync: add `InPlaceInit` trait to pin-initialize smart pointersBenno Lossin
2023-04-12rust: sync: change error type of constructor functionsBenno Lossin
2023-04-12rust: sync: arc: Add UniqueArc<MaybeUninit<T>::assume_init()Asahi Lina
2023-04-10rust: sync: arc: Implement Arc<dyn Any + Send + Sync>::downcast()Asahi Lina
2023-04-10rust: sync: impl {Debug,Display} for {Unique,}ArcBoqun Feng
2023-02-07rust: types: implement `ForeignOwnable` for `Arc<T>`Wedson Almeida Filho
2023-01-16rust: sync: add support for dispatching on Arc and ArcBorrow.Wedson Almeida Filho