[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZTw3_--yDkJ9ZwIP@boqun-archlinux>
Date: Fri, 27 Oct 2023 15:21:51 -0700
From: Boqun Feng <boqun.feng@...il.com>
To: Benno Lossin <benno.lossin@...ton.me>
Cc: FUJITA Tomonori <fujita.tomonori@...il.com>, netdev@...r.kernel.org,
rust-for-linux@...r.kernel.org, andrew@...n.ch, tmgross@...ch.edu,
miguel.ojeda.sandonis@...il.com, wedsonaf@...il.com
Subject: Re: [PATCH net-next v7 1/5] rust: core abstractions for network PHY
drivers
On Fri, Oct 27, 2023 at 09:19:38PM +0000, Benno Lossin wrote:
[...]
>
> Good catch. `phy_device` is rather large (did not look at the exact
> size) and this will not be optimized on debug builds, so it could lead
> to stackoverflows.
>
IIRC, kernel only supports O2 build, but yes, if we don't want the copy
here, we should avoid the copy semantics.
> > struct phy_device phydev = *ptr;
> >
> > Sure, both compilers can figure this out, therefore no extra copy is
> > done, but still it's better to avoid this copy semantics by doing:
> >
> > let phydev = unsafe { &*self.0.get() };
>
> We need to be careful here, since doing this creates a reference
> `&bindings::phy_device` which asserts that it is immutable. That is not
> the case, since the C side might change it at any point (this is the
> reason we wrap things in `Opaque`, since that allows mutatation even
> through sharde references).
>
> I did not notice this before, but this means we cannot use the `link`
> function from bindgen, since that takes `&self`. We would need a
> function that takes `*const Self` instead.
>
Hmm... but does it mean even `set_speed()` has the similar issue?
let phydev: *mut phy_device = self.0.get();
unsafe { (*phydev).speed = ...; }
The `(*phydev)` creates a `&mut` IIUC. So we need the following maybe?
let phydev: *mut phy_device = self.0.get();
unsafe { *addr_mut_of!((*phydev).speed) = ...; }
because at least from phylib core guarantee, we know no one accessing
`speed` in the same time. However, yes, bit fields are tricky...
Regards,
Boqun
> --
> Cheers,
> Benno
>
Powered by blists - more mailing lists