From: "Onur Özkan" <work@onurozkan.dev>
To: Lyude Paul <lyude@redhat.com>
Cc: rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org,
lossin@kernel.org, ojeda@kernel.org, alex.gaynor@gmail.com,
boqun.feng@gmail.com, gary@garyguo.net, a.hindborg@kernel.org,
aliceryhl@google.com, tmgross@umich.edu, dakr@kernel.org,
peterz@infradead.org, mingo@redhat.com, will@kernel.org,
longman@redhat.com, felipe_life@live.com, daniel@sedlak.dev,
bjorn3_gh@protonmail.com, daniel.almeida@collabora.com
Subject: Re: [PATCH v6 0/7] rust: add `ww_mutex` support
Date: Fri, 17 Oct 2025 08:03:32 +0300 [thread overview]
Message-ID: <20251017080332.121c65a5@nimda.home> (raw)
In-Reply-To: <132e722c81391a7b99e340404374b5903a4759c3.camel@redhat.com>
On Thu, 16 Oct 2025 15:47:09 -0400
Lyude Paul <lyude@redhat.com> wrote:
> Hi! One thing I realized I forgot to ask the last time I reviewed
> this: one of the things that seems to be missing is the ability to
> use this API with locks and lock-acquisition mechanisms that already
> exist on the C side of the kernel.
>
> I think the simplest equivalent to this I can point to is how we have:
>
> * Mutex::from_raw() (but only when the type protected by the mutex
> is () )
> * Guard::from_raw()
>
> For ww mutexes we should have both of these as well, and also
> ::from_raw() for WwAcquireCtx. This being said - as far as I can
> tell, it doesn't look like it would be a big change for this series
> at all.
Sounds doable, I will make sure to include them in the next version
which I will be working on pretty soon. I couldn't allocate enough time
to work on this due to other priorities.
>
> Also - thank you for the work so far :)
My pleasure :)
-Onur
>
> On Wed, 2025-09-03 at 16:13 +0300, Onur Özkan wrote:
> > Changes made in v6:
> > - Added `unpinned_new` constructor for `WwClass` and updated
> > global macros.
> > - Changed all tests (and docs) to use Arc/KBox instead of
> > `stack_pin_init` for `WwMutex` and `WwAcquireCtx`.
> > - Added `LockKind` and `lock_common` helper to unify locking
> > logic.
> > - Added context-based and context-free locking functions for
> > `WwMutex`.
> > - Added `ww_mutex/exec` module, a high-level API with auto
> > `EDEADLK` handling mechanism.
> >
> > Onur Özkan (7):
> > rust: add C wrappers for ww_mutex inline functions
> > rust: implement `WwClass` for ww_mutex support
> > rust: implement `WwMutex`, `WwAcquireCtx` and `WwMutexGuard`
> > add KUnit coverage on Rust ww_mutex implementation
> > rust: ww_mutex: add context-free locking functions
> > rust: ww_mutex/exec: add high-level API
> > add KUnit coverage on ww_mutex/exec implementation
> >
> > rust/helpers/helpers.c | 1 +
> > rust/helpers/ww_mutex.c | 39 ++
> > rust/kernel/error.rs | 1 +
> > rust/kernel/sync/lock.rs | 1 +
> > rust/kernel/sync/lock/ww_mutex.rs | 634
> > +++++++++++++++++++++++++ rust/kernel/sync/lock/ww_mutex/exec.rs |
> > 324 +++++++++++++ 6 files changed, 1000 insertions(+)
> > create mode 100644 rust/helpers/ww_mutex.c
> > create mode 100644 rust/kernel/sync/lock/ww_mutex.rs
> > create mode 100644 rust/kernel/sync/lock/ww_mutex/exec.rs
> >
> > --
> > 2.50.0
>
prev parent reply other threads:[~2025-10-17 5:31 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-03 13:13 Onur Özkan
2025-09-03 13:13 ` [PATCH v6 1/7] rust: add C wrappers for ww_mutex inline functions Onur Özkan
2025-09-03 13:46 ` Daniel Almeida
2025-09-03 13:13 ` [PATCH v6 2/7] rust: implement `WwClass` for ww_mutex support Onur Özkan
2025-09-03 16:06 ` Boqun Feng
2025-09-04 8:23 ` Onur Özkan
2025-09-03 13:13 ` [PATCH v6 3/7] rust: implement `WwMutex`, `WwAcquireCtx` and `WwMutexGuard` Onur Özkan
2025-09-05 18:49 ` Daniel Almeida
2025-09-05 19:03 ` Daniel Almeida
2025-09-06 11:38 ` Onur
2025-10-22 10:47 ` Onur Özkan
2025-09-06 11:35 ` Onur
2025-09-03 13:13 ` [PATCH v6 4/7] add KUnit coverage on Rust ww_mutex implementation Onur Özkan
2025-09-05 19:04 ` Daniel Almeida
2025-09-03 13:13 ` [PATCH v6 5/7] rust: ww_mutex: add context-free locking functions Onur Özkan
2025-09-05 19:14 ` Daniel Almeida
2025-09-06 11:20 ` Onur
2025-10-21 13:31 ` Daniel Almeida
2025-10-21 13:20 ` Onur Özkan
2025-09-03 13:13 ` [PATCH v6 6/7] rust: ww_mutex/exec: add high-level API Onur Özkan
2025-09-05 19:42 ` Daniel Almeida
2025-09-06 11:13 ` Onur
2025-09-06 15:04 ` Daniel Almeida
2025-09-07 8:20 ` Onur
2025-09-07 8:38 ` Onur
2025-10-21 19:36 ` Onur Özkan
2025-10-21 13:24 ` Onur Özkan
2025-10-21 14:04 ` Onur Özkan
2025-09-05 23:11 ` Elle Rhumsaa
2025-09-06 11:47 ` Onur Özkan
2025-09-03 13:13 ` [PATCH v6 7/7] add KUnit coverage on ww_mutex/exec implementation Onur Özkan
2025-09-05 23:12 ` Elle Rhumsaa
2025-10-16 19:47 ` [PATCH v6 0/7] rust: add `ww_mutex` support Lyude Paul
2025-10-17 5:03 ` Onur Özkan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251017080332.121c65a5@nimda.home \
--to=work@onurozkan.dev \
--cc=a.hindborg@kernel.org \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=daniel@sedlak.dev \
--cc=felipe_life@live.com \
--cc=gary@garyguo.net \
--cc=linux-kernel@vger.kernel.org \
--cc=longman@redhat.com \
--cc=lossin@kernel.org \
--cc=lyude@redhat.com \
--cc=mingo@redhat.com \
--cc=ojeda@kernel.org \
--cc=peterz@infradead.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=tmgross@umich.edu \
--cc=will@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®