From: sashiko-bot@kernel.org
To: "Gary Guo" <gary@garyguo.net>
Cc: ojeda@kernel.org, "Danilo Krummrich" <dakr@kernel.org>,
linux-pci@vger.kernel.org, dri-devel@lists.freedesktop.org,
"Alexandre Courbot" <acourbot@nvidia.com>
Subject: Re: [PATCH v3 07/19] rust: io: implement `Mmio` as view type
Date: Mon, 08 Jun 2026 20:15:12 +0000 [thread overview]
Message-ID: <20260608201512.BCB7B1F00893@smtp.kernel.org> (raw)
In-Reply-To: <20260608-io_projection-v3-7-c5cde13a5ec4@garyguo.net>
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [Medium] `RelaxedMmio` is missing `Send` and `Sync` trait implementations, preventing it from being shared or sent across threads.
- [Low] The `Mmio::relaxed` method is missing the required `#[inline]` annotation.
- [Low] The doc comment for `Mmio::relaxed` incorrectly claims to return a reference.
--
commit 2af28174275bf1ccd9fc4579aef4a245e6ff315d
Author: Gary Guo <gary@garyguo.net>
rust: io: implement `Mmio` as view type
This commit implements Mmio as a view type and converts RelaxedMmio to a view
type. I/O implementations of MmioOwned are changed to delegate to the Mmio view
type. Documentation users of MmioOwned are updated to reflect these semantics.
> diff --git a/rust/kernel/io.rs b/rust/kernel/io.rs
> index d5c233a66846d..771372a8aa36b 100644
> --- a/rust/kernel/io.rs
> +++ b/rust/kernel/io.rs
[ ... ]
> @@ -888,32 +968,53 @@ pub unsafe fn from_raw(raw: &MmioRaw<Region<SIZE>>) -> &Self {
[ ... ]
> +pub struct RelaxedMmio<'a, T: ?Sized> {
> + ptr: *mut T,
> + phantom: PhantomData<&'a ()>,
> +}
[Severity: Medium]
Because RelaxedMmio now contains a raw pointer (*mut T), it is implicitly
!Send and !Sync.
While the newly introduced Mmio type received explicit Send and Sync
implementations, they seem to be omitted here.
Should RelaxedMmio also implement Send and Sync so it can be shared or sent
across threads by drivers?
[ ... ]
> -impl<const SIZE: usize> MmioOwned<SIZE> {
> +impl<'a, T: ?Sized> Mmio<'a, T> {
> /// Returns a [`RelaxedMmio`] reference that performs relaxed I/O operations.
[Severity: Low]
This isn't a bug, but the doc comment says it returns a reference, while the
function signature below now returns the view type by value. Could this be
updated to reflect the new semantics?
> ///
> /// Relaxed accessors do not provide ordering guarantees with respect to DMA or memory accesses
> @@ -924,20 +1025,23 @@ impl<const SIZE: usize> MmioOwned<SIZE> {
[ ... ]
> - pub fn relaxed(&self) -> &RelaxedMmio<SIZE> {
> - // SAFETY: `RelaxedMmio` is `#[repr(transparent)]` over `MmioOwned`, so `MmioOwned<SIZE>`
> - // and `RelaxedMmio<SIZE>` have identical layout.
> - unsafe { core::mem::transmute(self) }
> + pub fn relaxed(self) -> RelaxedMmio<'a, T> {
> + // INVARIANT: `RelaxedMmio` has the same invariant as `Mmio`.
> + RelaxedMmio {
> + ptr: self.ptr,
> + phantom: PhantomData,
> + }
> }
[Severity: Low]
This isn't a bug, but should this small abstraction function be annotated with
#[inline]?
According to the Rust subsystem coding guidelines, functions in abstractions
that are small or just forwarding to a binding call should be inlined. This
would match other view-creation methods like Mmio::from_raw.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260608-io_projection-v3-0-c5cde13a5ec4@garyguo.net?part=7
next prev parent reply other threads:[~2026-06-08 20:15 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-08 19:58 [PATCH v3 00/19] rust: I/O type generalization and projection Gary Guo
2026-06-08 19:58 ` [PATCH v3 01/19] rust: io: add dynamically-sized `Region` type Gary Guo
2026-06-08 23:52 ` Gary Guo
2026-06-08 19:58 ` [PATCH v3 02/19] rust: io: add missing safety requirement in `IoCapable` methods Gary Guo
2026-06-08 20:13 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 03/19] rust: io: restrict untyped IO access and `register!` to `Region` Gary Guo
2026-06-08 19:59 ` [PATCH v3 04/19] rust: io: implement `Io` on reference types instead Gary Guo
2026-06-08 19:59 ` [PATCH v3 05/19] rust: io: generalize `MmioRaw` to pointer to arbitrary type Gary Guo
2026-06-08 20:14 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 06/19] rust: io: rename `Mmio` to `MmioOwned` Gary Guo
2026-06-08 19:59 ` [PATCH v3 07/19] rust: io: implement `Mmio` as view type Gary Guo
2026-06-08 20:15 ` sashiko-bot [this message]
2026-06-08 19:59 ` [PATCH v3 08/19] rust: pci: io: make `ConfigSpace` a view Gary Guo
2026-06-08 20:11 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 09/19] rust: io: use view types instead of addresses for `Io` Gary Guo
2026-06-08 19:59 ` [PATCH v3 10/19] rust: io: remove `MmioOwned` Gary Guo
2026-06-08 20:12 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 11/19] rust: io: move `Io` methods to extension trait Gary Guo
2026-06-08 19:59 ` [PATCH v3 12/19] rust: io: add projection macro and methods Gary Guo
2026-06-08 20:13 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 13/19] rust: io: add I/O backend for system memory with volatile access Gary Guo
2026-06-08 20:09 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 14/19] rust: io: implement a view type for `Coherent` Gary Guo
2026-06-08 20:18 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 15/19] rust: io: add `read_val` and `write_val` function on `Io` Gary Guo
2026-06-08 19:59 ` [PATCH v3 16/19] gpu: nova-core: use I/O projection for cleaner encapsulation Gary Guo
2026-06-08 19:59 ` [PATCH v3 17/19] rust: dma: drop `dma_read!` and `dma_write!` API Gary Guo
2026-06-08 19:59 ` [PATCH v3 18/19] rust: io: add copying methods Gary Guo
2026-06-08 20:20 ` sashiko-bot
2026-06-08 19:59 ` [PATCH v3 19/19] rust: io: implement `Io` for `Either` Gary Guo
2026-06-08 21:22 ` [PATCH v3 00/19] rust: I/O type generalization and projection 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=20260608201512.BCB7B1F00893@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=acourbot@nvidia.com \
--cc=dakr@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=gary@garyguo.net \
--cc=linux-pci@vger.kernel.org \
--cc=ojeda@kernel.org \
--cc=sashiko-reviews@lists.linux.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