Re: [PATCH net-next v7 5/5] net: phy: add Rust Asix PHY driver
From: Greg KH <hidden>
Date: 2023-11-21 07:12:18
Also in:
rust-for-linux
On Tue, Nov 21, 2023 at 03:19:39PM +0900, FUJITA Tomonori wrote:
On Sun, 19 Nov 2023 17:03:30 +0100 Andrew Lunn [off-list ref] wrote:quoted
quoted
quoted
quoted
+ let _ = dev.init_hw(); + let _ = dev.start_aneg();Just to confirm: You want to call `start_aneg` even if `init_hw` returns failure? And you want to ignore both errors?Yeah, I tried to implement the exact same behavior in the original C driver.You probably could check the return values, and it would not make a difference. Also, link_change_notify() is a void function, so you cannot return the error anyway. These low level functions basically only fail if the hardware is `dead`. You get an -EIO or maybe -TIMEDOUT back. And there is no real recovery. You tend to get such errors during probe and fail the probe. Or maybe if power management is wrong and it has turned a critical clock off. But that is unlikely in this case, we are calling link_change_notify because the PHY has told us something changed recently, so it probably is alive. I would say part of not checking the return code is also that C does not have the nice feature that Rust has of making very simple to check the return code. That combined with it being mostly pointless for PHY drivers.Understood. I'll check the first return value if you prefer. I might add WARN_ON_ONCE after Rust supports it.
Please don't, it shouldn't support it, handle errors properly and return, don't panic machines (remember, the majority of the Linux systems in the world run panic-on-warn). thanks, g reg k-h