[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <586e6fe2-60af-4a8f-9727-98ad7d6b9593@lunn.ch>
Date: Mon, 8 Dec 2025 14:37:38 +0100
From: Andrew Lunn <andrew@...n.ch>
To: "Russell King (Oracle)" <linux@...linux.org.uk>
Cc: Daniel Golle <daniel@...rotopia.org>, Hauke Mehrtens <hauke@...ke-m.de>,
Vladimir Oltean <olteanv@...il.com>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
Rasmus Villemoes <ravi@...vas.dk>,
"Benny (Ying-Tsan) Weng" <yweng@...linear.com>,
John Crispin <john@...ozen.org>
Subject: Re: [PATCH net v3] net: dsa: mxl-gsw1xx: manually clear RANEG bit
On Mon, Dec 08, 2025 at 12:47:51PM +0000, Russell King (Oracle) wrote:
> On Mon, Dec 08, 2025 at 01:27:04AM +0000, Daniel Golle wrote:
> > static void gsw1xx_remove(struct mdio_device *mdiodev)
> > {
> > struct gswip_priv *priv = dev_get_drvdata(&mdiodev->dev);
> > + struct gsw1xx_priv *gsw1xx_priv;
> >
> > if (!priv)
> > return;
> >
> > + gsw1xx_priv = container_of(priv, struct gsw1xx_priv, gswip);
> > + cancel_delayed_work_sync(&gsw1xx_priv->clear_raneg);
> > +
> > gswip_disable_switch(priv);
> >
> > dsa_unregister_switch(priv->ds);
>
> Can we please pay attention to ->remove methods, and code them properly
> please?
>
> There are two golden rules of driver programming.
>
> 1. Do not publish the device during probe until hardware setup is
> complete. If you publish before hardware setup is complete, userspace
> is free to race with the hardware setup and start using the device.
> This is especially true of recent systems which use hotplug events
> via udev and systemd to do stuff.
>
> 2. Do not start tearing down a device until the user interfaces have
> been unpublished. Similar to (1), while the user interface is
> published, uesrspace is completely free to interact with the device
> in any way it sees fit.
>
> In this case, what I'm concerned with is the call above to
> cancel_delayed_work_sync() before dsa_unregister_switch(). While
> cancel_delayed_work_sync() will stop this work and wait for the handler
> to finish running before returning (which is safe) there is a window
> between this call and dsa_unregister_switch() where the user _could_
> issue a badly timed ethtool command which invokes
> gsw1xx_pcs_an_restart(), which would re-schedule the delayed work,
> thus undoing the cancel_delayed_work_sync() effect in this path.
And this is why is was pushing for the much simpler msleep(10), or
io_poll.h polling to see if it self clears. It is hard to get that
wrong, where as delayed work is much easier to get wrong.
Andrew
Powered by blists - more mailing lists