summaryrefslogtreecommitdiffstats
path: root/rust/kernel/sync
AgeCommit message (Expand)AuthorLines
2024-11-26Merge tag 'rust-6.13' of https://github.com/Rust-for-Linux/linuxLinus Torvalds-32/+368
2024-11-10rust: use custom FFI integer typesGary Guo-7/+7
2024-11-10rust: sync: add global lock supportAlice Ryhl-0/+304
2024-10-15rust: treewide: switch to the kernel `Vec` typeDanilo Krummrich-1/+1
2024-10-15rust: treewide: switch to our kernel `Box` typeDanilo Krummrich-13/+12
2024-10-10rust: lock: add trylock method support for lock backendFilipe Xavier-0/+38
2024-10-08Merge patch series "File abstractions needed by Rust Binder"Christian Brauner-4/+130
2024-10-07rust: enable arbitrary_self_types and remove `Receiver`Gary Guo-6/+0
2024-10-07rust: provide proper code documentation titlesMiguel Ojeda-0/+2
2024-10-07rust: sync: remove unneeded `#[allow(clippy::non_send_fields_in_send_ty)]`Miguel Ojeda-1/+0
2024-10-07rust: enable `clippy::unnecessary_safety_comment` lintMiguel Ojeda-1/+1
2024-10-07rust: enable `clippy::undocumented_unsafe_blocks` lintMiguel Ojeda-4/+4
2024-09-30rust: file: add abstraction for `poll_table`Alice Ryhl-0/+121
2024-09-30rust: types: add `NotThreadSafe`Alice Ryhl-4/+9
2024-09-26rust: sync: require `T: Sync` for `LockedBy::access`Alice Ryhl-4/+14
2024-08-18rust: Implement the smart pointer `InPlaceInit` for `Arc`Alex Mantel-23/+2
2024-05-05rust: kernel: remove redundant importsMiguel Ojeda-7/+1
2024-05-05rust: sync: add `Arc::into_unique_or_drop`Alice Ryhl-0/+62
2024-05-05rust: sync: add `ArcBorrow::from_raw`Alice Ryhl-18/+58
2024-04-16rust: kernel: remove usage of `allocator_api` unstable featureWedson Almeida Filho-2/+2
2024-04-16rust: init: update `init` module to take allocation flagsWedson Almeida Filho-13/+16
2024-04-16rust: sync: update `Arc` and `UniqueArc` to take allocation flagsWedson Almeida Filho-14/+14
2024-04-16rust: alloc: introduce the `BoxExt` traitWedson Almeida Filho-1/+2
2024-02-18rust: kernel: stop using ptr_metadata featureAlice Ryhl-9/+7
2024-02-18rust: kernel: add reexports for macrosAlice Ryhl-4/+6
2024-02-18rust: locked_by: shorten doclink previewValentin Obst-2/+5
2024-02-18rust: kernel: add doclinksValentin Obst-6/+13
2024-02-18rust: kernel: mark code fragments in docs with backticksValentin Obst-1/+1
2024-02-18rust: kernel: unify spelling of refcount in docsValentin Obst-4/+4
2024-02-18rust: kernel: add srctree-relative doclinksValentin Obst-0/+2
2024-02-18rust: kernel: fix multiple typos in documentationValentin Obst-3/+3
2024-01-28rust: sync: update integer types in CondVarAlice Ryhl-18/+20
2024-01-28rust: sync: add `CondVar::wait_timeout`Alice Ryhl-8/+56
2024-01-28rust: sync: add `CondVar::notify_sync`Alice Ryhl-0/+10
2024-01-22rust: sync: `CondVar` rename "wait_list" to "wait_queue_head"Charalampos Mitrodimas-8/+12
2023-12-21rust: support `srctree`-relative linksMiguel Ojeda-3/+3
2023-12-21rust: sync: Makes `CondVar::wait()` an uninterruptible waitBoqun Feng-14/+14
2023-10-30Merge tag 'wq-for-6.7-rust-bindings' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds-2/+44
2023-10-05rust: kernel: remove `#[allow(clippy::new_ret_no_self)]`Gary Guo-2/+0
2023-10-05rust: arc: add explicit `drop()` around `Box::from_raw()`Miguel Ojeda-1/+1
2023-09-25rust: sync: add `Arc::{from_raw, into_raw}`Wedson Almeida Filho-2/+44
2023-08-29Merge tag 'rust-6.6' of https://github.com/Rust-for-Linux/linuxLinus Torvalds-3/+3
2023-08-28Merge tag 'linux-kselftest-kunit-6.6-rc1' of git://git.kernel.org/pub/scm/lin...Linus Torvalds-2/+9
2023-08-07rust: lock: Add intra-doc links to the Backend traitBen Gooding-3/+3
2023-08-04rust: delete `ForeignOwnable::borrow_mut`Alice Ryhl-2/+1
2023-07-19rust: sync: make doctests compilable/testableMiguel Ojeda-2/+9
2023-05-31rust: sync: reword the `Arc` safety comment for `Sync`Alice Ryhl-3/+5
2023-05-31rust: sync: reword the `Arc` safety comment for `Send`Alice Ryhl-2/+2
2023-05-31rust: sync: implement `AsRef<T>` for `Arc<T>`Alice Ryhl-0/+6
2023-05-31rust: sync: add `Arc::ptr_eq`Alice Ryhl-0/+5