]> git.ipfire.org Git - thirdparty/linux.git/commit
rust: implement `kernel::sync::Refcount`
authorGary Guo <gary@garyguo.net>
Fri, 5 Sep 2025 04:41:37 +0000 (21:41 -0700)
committerPeter Zijlstra <peterz@infradead.org>
Mon, 15 Sep 2025 07:38:35 +0000 (09:38 +0200)
commitbb38f35b35f9de0cebc4d62ea73482454e38cef3
tree215a5213716338325853e173d21f1c7cd3d82c61
parentd9ea5a41cef80dc8103f4114b072b27364f2e06a
rust: implement `kernel::sync::Refcount`

This is a wrapping layer of `include/linux/refcount.h`. Currently the
kernel refcount has already been used in `Arc`, however it calls into
FFI directly.

[boqun: Add the missing <> for the link in comment]
Signed-off-by: Gary Guo <gary@garyguo.net>
Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Reviewed-by: Boqun Feng <boqun.feng@gmail.com>
Reviewed-by: Fiona Behrens <me@kloenk.dev>
Reviewed-by: Benno Lossin <lossin@kernel.org>
Reviewed-by: Elle Rhumsaa <elle@weathered-steel.dev>
Link: https://lore.kernel.org/r/20250723233312.3304339-2-gary@kernel.org
rust/helpers/refcount.c
rust/kernel/sync.rs
rust/kernel/sync/refcount.rs [new file with mode: 0644]