[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230612133853.GT12152@unreal>
Date: Mon, 12 Jun 2023 16:38:53 +0300
From: Leon Romanovsky <leon@...nel.org>
To: Vladimir Oltean <olteanv@...il.com>
Cc: Maciej Fijalkowski <maciej.fijalkowski@...el.com>,
Asmaa Mnebhi <asmaa@...dia.com>, davem@...emloft.net,
edumazet@...gle.com, kuba@...nel.org, pabeni@...hat.com,
netdev@...r.kernel.org, cai.huoqing@...ux.dev, brgl@...ev.pl,
chenhao288@...ilicon.com, huangguangbin2@...wei.com,
David Thompson <davthompson@...dia.com>
Subject: Re: [PATCH net v2 1/1] mlxbf_gige: Fix kernel panic at shutdown
On Mon, Jun 12, 2023 at 04:28:41PM +0300, Vladimir Oltean wrote:
> On Mon, Jun 12, 2023 at 04:17:07PM +0300, Leon Romanovsky wrote:
> > On Mon, Jun 12, 2023 at 03:37:18PM +0300, Vladimir Oltean wrote:
> > > On Mon, Jun 12, 2023 at 02:59:25PM +0300, Leon Romanovsky wrote:
> > > > As far as I can tell, the calls to .shutdown() and .remove() are
> > > > mutually exclusive.
> > >
> > > In this particular case, or in general?
> > >
> > > In general they aren't. If the owning bus driver also implements its .shutdown()
> > > as .remove(), then it will call the .remove() method of all devices on that bus.
> > > That, after .shutdown() had already been called for those same children.
> >
> > Can you please help me to see how? What is the call chain?
> >
> > From what I see callback to ->shutdown() iterates over all devices in
> > that bus and relevant bus will check that driver is bound prior to call
> > to driver callback. In both cases, the driver is removed and bus won't
> > call to already removed device.
>
> The sequence of operations is:
>
> * device_shutdown() walks the devices_kset backwards, thus shutting down
> children before parents
> * .shutdown() method of child gets called
> * .shutdown() method of parent gets called
> * parent implements .shutdown() as .remove()
> * the parent's .remove() logic calls device_del() on its children
> * .remove() method of child gets called
But both child and parent are locked so they parent can't call to
child's remove while child is performing shutdown.
BTW, I read the same device_shutdown() function before my first reply
and came to different conclusions from you.
>
> > If it does, it is arguably bug in bus logic, which needs to prevent such
> > scenario.
>
> It's just a consequence of how things work when you reuse the .remove() logic
> for .shutdown() without thinking it through. It's a widespread pattern.
Powered by blists - more mailing lists