The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: "Gary Guo" <gary@garyguo.net>
To: "Onur Özkan" <work@onurozkan.dev>,
	"Maurice Hieronymus" <mhi@mailbox.org>
Cc: "Danilo Krummrich" <dakr@kernel.org>,
	"Bjorn Helgaas" <bhelgaas@google.com>,
	"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
	"Miguel Ojeda" <ojeda@kernel.org>,
	"Boqun Feng" <boqun@kernel.org>, "Gary Guo" <gary@garyguo.net>,
	"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
	"Benno Lossin" <lossin@kernel.org>,
	"Andreas Hindborg" <a.hindborg@kernel.org>,
	"Alice Ryhl" <aliceryhl@google.com>,
	"Trevor Gross" <tmgross@umich.edu>,
	"Daniel Almeida" <daniel.almeida@collabora.com>,
	"Tamir Duberstein" <tamird@kernel.org>,
	"Alexandre Courbot" <acourbot@nvidia.com>,
	"Lyude Paul" <lyude@redhat.com>,
	linux-pci@vger.kernel.org, rust-for-linux@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 3/4] rust: completion: add complete()
Date: Thu, 02 Jul 2026 15:42:35 +0100	[thread overview]
Message-ID: <DJO5XTT3MOPY.NFTTWA7QMSYP@garyguo.net> (raw)
In-Reply-To: <20260620094815.8347-1-work@onurozkan.dev>

On Sat Jun 20, 2026 at 10:48 AM BST, Onur Özkan wrote:
> On Sat, 20 Jun 2026 10:45:47 +0200
> Maurice Hieronymus <mhi@mailbox.org> wrote:
>
>> The initial completion abstraction only added complete_all() and
>> wait_for_completion(). complete_all() marks the completion permanently
>> done, which makes a single Completion unsuitable for signalling the same
>> event repeatedly: once complete_all() has run, every subsequent
>> wait_for_completion() returns immediately without waiting.
>> 
>> Add complete(), which wakes a single waiter and increments the internal
>> counter by one. Paired one-to-one with wait_for_completion(), it allows
>> the same completion to be reused across multiple cycles, e.g. to wait for
>> consecutive DMA transfers to finish.
>> 
>> Signed-off-by: Maurice Hieronymus <mhi@mailbox.org>
>> ---
>>  rust/kernel/sync/completion.rs | 11 +++++++++++
>>  1 file changed, 11 insertions(+)
>> 
>> diff --git a/rust/kernel/sync/completion.rs b/rust/kernel/sync/completion.rs
>> index 35ff049ff078..a54361b53644 100644
>> --- a/rust/kernel/sync/completion.rs
>> +++ b/rust/kernel/sync/completion.rs
>> @@ -90,6 +90,17 @@ fn as_raw(&self) -> *mut bindings::completion {
>>          self.inner.get()
>>      }
>>  
>> +    /// Signal a single task waiting on this completion.
>> +    ///
>> +    /// This method wakes up a single task waiting on this completion.
>> +    /// If no task is currently waiting, the next
>> +    /// [`Completion::wait_for_completion`] returns immediately.
>> +    #[inline]
>> +    pub fn complete(&self) {
>> +        // SAFETY: `self.as_raw()` is a pointer to a valid `struct completion`.
>
> I think the safety comment is a bit weak here. It would be nice to add why
> self.as_raw() is guaranteed to be a valid pointer.

I don't think that's needed. Saying `self.as_raw()` is valid is a sufficient
justification.

Best,
Gary


  parent reply	other threads:[~2026-07-02 14:42 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-20  8:45 [PATCH v2 0/4] rust: samples: add an EDU PCI driver sample (MMIO + IRQ + DMA) Maurice Hieronymus
2026-06-20  8:45 ` [PATCH v2 1/4] rust: pci: make Vendor::from_raw() public Maurice Hieronymus
2026-06-20  9:48   ` Onur Özkan
2026-06-20  8:45 ` [PATCH v2 2/4] rust: pci: add managed Device::enable_device() Maurice Hieronymus
2026-06-20  9:54   ` Onur Özkan
2026-06-20 22:19     ` Maurice Hieronymus
2026-06-21 12:02       ` Danilo Krummrich
2026-06-20  8:45 ` [PATCH v2 3/4] rust: completion: add complete() Maurice Hieronymus
2026-06-20  9:48   ` Onur Özkan
2026-07-02 14:11     ` Maurice Hieronymus
2026-07-02 14:42     ` Gary Guo [this message]
2026-07-02 14:43   ` Gary Guo
2026-06-20  8:45 ` [PATCH v2 4/4] rust: samples: add EDU PCI driver sample Maurice Hieronymus
2026-06-20  9:45   ` Onur Özkan
2026-06-21 12:27   ` Danilo Krummrich
2026-07-02 15:24     ` Maurice Hieronymus
2026-07-02 15:40       ` Danilo Krummrich

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=DJO5XTT3MOPY.NFTTWA7QMSYP@garyguo.net \
    --to=gary@garyguo.net \
    --cc=a.hindborg@kernel.org \
    --cc=acourbot@nvidia.com \
    --cc=aliceryhl@google.com \
    --cc=bhelgaas@google.com \
    --cc=bjorn3_gh@protonmail.com \
    --cc=boqun@kernel.org \
    --cc=dakr@kernel.org \
    --cc=daniel.almeida@collabora.com \
    --cc=kwilczynski@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=lossin@kernel.org \
    --cc=lyude@redhat.com \
    --cc=mhi@mailbox.org \
    --cc=ojeda@kernel.org \
    --cc=rust-for-linux@vger.kernel.org \
    --cc=tamird@kernel.org \
    --cc=tmgross@umich.edu \
    --cc=work@onurozkan.dev \
    /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