From: "Alexandre Courbot" <acourbot@nvidia.com>
To: "Gary Guo" <gary@garyguo.net>
Cc: "Zhi Wang" <zhiw@nvidia.com>, <rust-for-linux@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <dakr@kernel.org>,
<jgg@nvidia.com>, <dave.jiang@intel.com>, <saeedm@nvidia.com>,
<jic23@kernel.org>, <joelagnelf@nvidia.com>,
<aliceryhl@google.com>, <kwilczynski@kernel.org>,
<ojeda@kernel.org>, <alex.gaynor@gmail.com>,
<boqun.feng@gmail.com>, <bjorn3_gh@protonmail.com>,
<lossin@kernel.org>, <a.hindborg@kernel.org>, <tmgross@umich.edu>,
<cjia@nvidia.com>, <smitra@nvidia.com>, <ankita@nvidia.com>,
<aniketa@nvidia.com>, <kwankhede@nvidia.com>,
<targupta@nvidia.com>, <kjaju@nvidia.com>, <alkumar@nvidia.com>,
<jhubbard@nvidia.com>, <zhiwang@kernel.org>,
<daniel.almeida@collabora.com>
Subject: Re: [PATCH v6 1/1] rust: introduce abstractions for fwctl
Date: Tue, 07 Jul 2026 20:33:40 +0900 [thread overview]
Message-ID: <DJSB1WPVIRLZ.1Q1KR23BQTMRE@nvidia.com> (raw)
In-Reply-To: <DJRH022OWTTK.1KPQDQHKG7CTF@garyguo.net>
On Mon Jul 6, 2026 at 9:00 PM JST, Gary Guo wrote:
> On Mon Jul 6, 2026 at 5:19 AM BST, Alexandre Courbot wrote:
>> Hi Zhi,
>>
>> This is looking pretty good to me overall, a few remarks/questions
>> below. None of these should require big changes.
>>
>> On Tue Jun 30, 2026 at 12:01 AM JST, Zhi Wang wrote:
>> <...>
>>> +/// A fwctl device.
>>> +///
>>> +/// `#[repr(C)]` with the `fwctl_device` at offset 0, matching the C `fwctl_alloc_device()` layout
>>> +/// convention. Contains a pointer to the [`Registration`]'s data, set at registration time and
>>> +/// cleared on unregistration.
>>> +///
>>> +/// # Invariants
>>> +///
>>> +/// - `dev` is embedded at offset 0 and is initialised by fwctl.
>>> +/// - The fwctl refcount owns the allocation lifetime.
>>> +/// - `registration_data` is either `NonNull::dangling()` (before registration / after
>>> +/// unregistration) or points to valid data owned by the [`Registration`].
>>> +#[repr(C)]
>>> +pub struct Device<T: Operations> {
>>> + dev: Opaque<bindings::fwctl_device>,
>>> + registration_data: UnsafeCell<NonNull<T::RegistrationData<'static>>>,
>>> +}
>>> +
>>> +impl<T: Operations> Device<T> {
>>> + /// Allocate a new fwctl device.
>>> + ///
>>> + /// Returns an [`ARef`] that can be passed to [`Registration::new()`]
>>> + /// to make the device visible to userspace.
>>> + pub fn new(parent: &device::Device<device::Bound>) -> Result<ARef<Self>> {
>>> + const_assert!(
>>> + core::mem::offset_of!(Self, dev) == 0,
>>> + "struct fwctl_device must be at offset 0"
>>> + );
>>> +
>>> + let ops = core::ptr::from_ref::<bindings::fwctl_ops>(&VTable::<T>::VTABLE).cast_mut();
>>> +
>>> + // SAFETY: `ops` is static, `parent` is bound, and `size` covers the full `Device<T>`.
>>> + let raw = unsafe {
>>> + bindings::_fwctl_alloc_device(parent.as_raw(), ops, core::mem::size_of::<Self>())
>>> + };
>>> +
>>> + if raw.is_null() {
>>> + return Err(ENOMEM);
>>> + }
>>> +
>>> + let this = raw.cast::<Self>();
>>> +
>>> + // INVARIANT: Set `registration_data` to dangling (no registration yet).
>>> + // SAFETY: `this` points to the allocation just returned by fwctl.
>>> + unsafe {
>>> + core::ptr::addr_of_mut!((*this).registration_data)
>>> + .write(UnsafeCell::new(NonNull::dangling()));
>>> + };
>>> +
>>> + // SAFETY: `raw` owns the initial reference.
>>> + Ok(unsafe { ARef::from_raw(NonNull::new_unchecked(this)) })
>>
>> How about replacing from `if raw.is_null() ...` with something more
>> functional-style:
>>
>> NonNull::new(raw.cast::<Self>())
>> .map(|this| {
>> // INVARIANT: Set `registration_data` to dangling (no registration yet).
>> // SAFETY: `this` points to the allocation just returned by fwctl.
>> unsafe {
>> (&raw mut (*this.as_ptr()).registration_data)
>> .write(UnsafeCell::new(NonNull::dangling()))
>> };
>> // SAFETY: `this` owns the initial reference.
>> unsafe { ARef::from_raw(this) }
>> })
>> .ok_or(ENOMEM)
>
> I would rather do
>
> let this = NonNull::new(raw.cast::<Self>()).ok_or(ENOMEM);
> // use this
>
> for a more linear style. Map shouldn't be needed.
That works too, the main thing being using `NonNull` early on to avoid
the `new_unchecked`.
next prev parent reply other threads:[~2026-07-07 11:33 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 15:01 [PATCH v6 0/1] rust: introduce abstractions for fwctl Zhi Wang
2026-06-29 15:01 ` [PATCH v6 1/1] " Zhi Wang
2026-07-04 19:42 ` Danilo Krummrich
2026-07-08 15:20 ` Zhi Wang
2026-07-06 4:19 ` Alexandre Courbot
2026-07-06 11:30 ` Danilo Krummrich
2026-07-06 12:00 ` Gary Guo
2026-07-07 11:33 ` Alexandre Courbot [this message]
2026-07-08 15:53 ` Zhi Wang
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=DJSB1WPVIRLZ.1Q1KR23BQTMRE@nvidia.com \
--to=acourbot@nvidia.com \
--cc=a.hindborg@kernel.org \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=alkumar@nvidia.com \
--cc=aniketa@nvidia.com \
--cc=ankita@nvidia.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=cjia@nvidia.com \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=dave.jiang@intel.com \
--cc=gary@garyguo.net \
--cc=jgg@nvidia.com \
--cc=jhubbard@nvidia.com \
--cc=jic23@kernel.org \
--cc=joelagnelf@nvidia.com \
--cc=kjaju@nvidia.com \
--cc=kwankhede@nvidia.com \
--cc=kwilczynski@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lossin@kernel.org \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=saeedm@nvidia.com \
--cc=smitra@nvidia.com \
--cc=targupta@nvidia.com \
--cc=tmgross@umich.edu \
--cc=zhiw@nvidia.com \
--cc=zhiwang@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