aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/rust/kernel/sync
AgeCommit message (Expand)AuthorFilesLines
2026-04-24Merge tag 'char-misc-7.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-miscLinus Torvalds1-0/+22
2026-04-14Merge tag 'locking-core-2026-04-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds3-24/+439
2026-04-07rust: remove `RUSTC_HAS_COERCE_POINTEE` and simplify codeMiguel Ojeda1-19/+2
2026-04-01rust: sync: implement == operator for ARefAlice Ryhl1-0/+22
2026-03-08rust: atomic: Update a safety comment in impl of `fetch_add()`Andreas Hindborg1-1/+1
2026-03-08rust: sync: atomic: Update documentation for `fetch_add()`Andreas Hindborg1-6/+4
2026-03-08rust: sync: atomic: Add fetch_sub()Andreas Hindborg2-0/+48
2026-03-08rust: sync: atomic: Add atomic operation helpers over raw pointersBoqun Feng2-0/+150
2026-03-08rust: sync: atomic: Add performance-optimal Flag type for atomic booleansFUJITA Tomonori2-0/+142
2026-03-08rust: sync: atomic: Add Atomic<*{mut,const} T> supportBoqun Feng3-10/+72
2026-03-08rust: sync: atomic: Clarify the need of CONFIG_ARCH_SUPPORTS_ATOMIC_RMWBoqun Feng1-6/+13
2026-03-08rust: sync: atomic: Add example for Atomic::get_mut()FUJITA Tomonori1-0/+11
2026-03-08rust: sync: atomic: Remove bound `T: Sync` for `Atomic::from_ptr()`Boqun Feng1-4/+1
2026-02-17Merge tag 'char-misc-7.0-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-miscLinus Torvalds1-0/+3
2026-02-10Merge tag 'locking-core-2026-02-08' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds8-27/+172
2026-01-26rust: sync: atomic: Provide stub for `rusttest` 32-bit hostsMiguel Ojeda1-0/+11
2026-01-18rust: sync: refcount: always inline functions using build_assert with argumentsAlexandre Courbot1-1/+2
2026-01-10rust: sync: Inline various lock related methodsAlice Ryhl4-0/+19
2026-01-09rust: sync: atomic: Add atomic bool testsFUJITA Tomonori1-0/+16
2026-01-09rust: sync: atomic: Add atomic bool support via i8 representationFUJITA Tomonori1-0/+11
2026-01-09rust: sync: atomic: Add i8/i16 xchg and cmpxchg supportFUJITA Tomonori2-3/+9
2026-01-09rust: sync: atomic: Add store_release/load_acquire testsFUJITA Tomonori1-0/+10
2026-01-09rust: sync: atomic: Add i8/i16 load and store supportFUJITA Tomonori2-7/+32
2026-01-09rust: sync: atomic: Prepare AtomicOps macros for i8/i16 supportFUJITA Tomonori1-19/+66
2026-01-09rust: sync: Implement Unpin for ARefAlice Ryhl1-0/+3
2026-01-09rust: sync: set_once: Implement Send and SyncFUJITA Tomonori1-0/+8
2025-12-29rust: sync: add Arc::DATA_OFFSETAlice Ryhl1-0/+3
2025-12-06rust: sync: atomic: separate import "blocks"Miguel Ojeda1-0/+1
2025-12-06Merge tag 'modules-6.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linuxLinus Torvalds1-0/+125
2025-12-03Merge tag 'rust-6.19' of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linuxLinus Torvalds3-3/+3
2025-12-01Merge tag 'locking-core-2025-12-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds3-6/+52
2025-11-12rust: sync: atomic: Implement Debug for Atomic<Debug>Boqun Feng1-0/+9
2025-11-12rust: sync: atomic: Make Atomic*Ops pub(crate)Boqun Feng1-1/+2
2025-11-03rust: sync: add `SetOnce`Andreas Hindborg1-0/+125
2025-11-02rust: condvar: fix broken intra-doc linkMiguel Ojeda1-1/+1
2025-10-22rust: replace `CStr` with `core::ffi::CStr`Tamir Duberstein3-3/+3
2025-10-21rust: lock: Add a Pin<&mut T> accessorDaniel Almeida1-0/+25
2025-10-21rust: lock: Pin the inner dataDaniel Almeida1-3/+8
2025-10-21rust: lock: guard: Add T: Unpin bound to DerefMutDaniel Almeida2-2/+8
2025-09-30Merge tag 'rust-6.18' of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linuxLinus Torvalds2-5/+20
2025-09-16rust: sync: use `kernel::{fmt,prelude::fmt!}`Tamir Duberstein1-1/+1
2025-09-15rust: block: convert `block::mq` to use `Refcount`Gary Guo1-0/+15
2025-09-15rust: convert `Arc` to use `Refcount`Gary Guo1-31/+14
2025-09-15rust: make `Arc::into_unique_or_drop` associated functionGary Guo1-6/+6
2025-09-15rust: implement `kernel::sync::Refcount`Gary Guo1-0/+98
2025-09-15rust: sync: Add memory barriersBoqun Feng1-0/+61
2025-09-15rust: sync: atomic: Add Atomic<{usize,isize}>Boqun Feng1-4/+49
2025-09-15rust: sync: atomic: Add Atomic<u{32,64}>Boqun Feng1-0/+95
2025-09-15rust: sync: atomic: Add the framework of arithmetic operationsBoqun Feng2-2/+106
2025-09-15rust: sync: atomic: Add atomic {cmp,}xchg operationsBoqun Feng1-1/+167