From: Benno Lossin <benno.lossin@proton.me>
To: "Alexandre Courbot" <acourbot@nvidia.com>,
"Miguel Ojeda" <ojeda@kernel.org>,
"Alex Gaynor" <alex.gaynor@gmail.com>,
"Boqun Feng" <boqun.feng@gmail.com>,
"Gary Guo" <gary@garyguo.net>,
"Danilo Krummrich" <dakr@kernel.org>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Andreas Hindborg" <a.hindborg@kernel.org>,
"Alice Ryhl" <aliceryhl@google.com>,
"Trevor Gross" <tmgross@umich.edu>
Cc: rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] rust/revocable: add try_with() convenience method
Date: Thu, 13 Mar 2025 14:19:53 +0000 [thread overview]
Message-ID: <D8F7D2RPRVAO.2EF39MZXM6FPR@proton.me> (raw)
In-Reply-To: <20250313-try_with-v1-1-adcae7ed98a9@nvidia.com>
On Thu Mar 13, 2025 at 1:40 PM CET, Alexandre Courbot wrote:
> diff --git a/rust/kernel/revocable.rs b/rust/kernel/revocable.rs
> index 1e5a9d25c21b279b01f90b02997492aa4880d84f..0157b20373b5b2892cb618b46958bfe095e428b6 100644
> --- a/rust/kernel/revocable.rs
> +++ b/rust/kernel/revocable.rs
> @@ -105,6 +105,28 @@ pub fn try_access(&self) -> Option<RevocableGuard<'_, T>> {
> }
> }
>
> + /// Tries to access the wrapped object and run the closure `f` on it with the guard held.
> + ///
> + /// This is a convenience method to run short non-sleepable code blocks while ensuring the
> + /// guard is dropped afterwards. [`Self::try_access`] carries the risk that the caller
> + /// will forget to explicitly drop that returned guard before calling sleepable code ; this
Space after `;`?
> + /// method adds an extra safety to make sure it doesn't happen.
To be clear, you still can call a sleeping function form within the
closure and have the same issue, but I agree that that should not happen
accidentally (or at least not as often).
> + ///
> + /// Returns `Err(ENXIO)` if the wrapped object has been revoked, or the result of `f` after it
> + /// has been run.
> + pub fn try_with<R, F: Fn(&T) -> Result<R>>(&self, f: F) -> Result<R> {
This (and below) can be a `FnOnce(&T) -> Result<R>`.
Would it make sense to not use `Result` here and continue with `Option`?
---
Cheers,
Benno
> + self.try_access().ok_or(ENXIO).and_then(|t| f(&*t))
> + }
> +
> + /// Tries to access the wrapped object and run the closure `f` on it with the guard held.
> + ///
> + /// This is the same as [`Self::try_with`], with the exception that `f` is expected to
> + /// always succeed and thus does not need to return a `Result`. Thus the only error case is if
> + /// the wrapped object has been revoked.
> + pub fn try_with_ok<R, F: Fn(&T) -> R>(&self, f: F) -> Result<R> {
> + self.try_with(|t| Ok(f(t)))
> + }
> +
> /// Tries to access the revocable wrapped object.
> ///
> /// Returns `None` if the object has been revoked and is therefore no longer accessible.
>
> ---
> base-commit: 4d872d51bc9d7b899c1f61534e3dbde72613f627
> change-id: 20250313-try_with-cc9f91dd3b60
>
> Best regards,
next prev parent reply other threads:[~2025-03-13 14:19 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-13 12:40 [PATCH] rust/revocable: add try_with() convenience method Alexandre Courbot
2025-03-13 14:19 ` Benno Lossin [this message]
2025-03-13 15:08 ` Alexandre Courbot
2025-03-13 15:38 ` Benno Lossin
2025-03-13 15:48 ` Danilo Krummrich
2025-03-13 17:50 ` Benno Lossin
2025-03-15 14:07 ` Alexandre Courbot
2025-03-15 14:17 ` Danilo Krummrich
2025-03-15 14:26 ` Alexandre Courbot
2025-03-15 17:48 ` Benno Lossin
2025-03-16 12:20 ` Alexandre Courbot
2025-03-16 12:42 ` Danilo Krummrich
2025-03-13 14:37 ` Danilo Krummrich
2025-03-13 15:11 ` Alexandre Courbot
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=D8F7D2RPRVAO.2EF39MZXM6FPR@proton.me \
--to=benno.lossin@proton.me \
--cc=a.hindborg@kernel.org \
--cc=acourbot@nvidia.com \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=dakr@kernel.org \
--cc=gary@garyguo.net \
--cc=linux-kernel@vger.kernel.org \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=tmgross@umich.edu \
/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