Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1709256
| From | Michal Suchánek <msuchanek@suse.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. |
| Date | 2017-08-11 07:10 +0200 |
| Message-ID | <udamS-7GS-7@gated-at.bofh.it> (permalink) |
| References | <ucGRP-4rq-9@gated-at.bofh.it> <ucHbc-4yf-29@gated-at.bofh.it> <ucSJj-4dQ-1@gated-at.bofh.it> <ucYF5-86V-53@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 2017-08-10 18:30, Jason Gunthorpe wrote:
> On Thu, Aug 10, 2017 at 12:18:11PM +0200, Michal Suchánek wrote:
>> > Existing bus implementations do properly chain to driver shutdown (eg
>> > look at mmc_bus_shutdown) and it appears to have been written like
>>
>> Neither isa nor ibmebus does. These are two random buses I tried to
>> look at.
>
> I'm not following, I see this:
>
> static void ibmebus_bus_device_shutdown(struct device *dev)
> {
> struct platform_device *of_dev = to_platform_device(dev);
> struct platform_driver *drv = to_platform_driver(dev->driver);
>
> if (dev->driver && drv->shutdown)
> drv->shutdown(of_dev);
> }
>
> It looks to me like in this case the struct device_driver shutdown is
> not used, and instead the struct platform_driver shutdown is called.
And it is not used even if a device driver sets it and expects it to
run.
>
>> > this so that the bus can insert code before and after calling the
>> > driver shutdown.
>>
>> So basically there is bus pre-shutdown and post-shutdown hook jumbled
>> together in one function.
>
> and a redirect, apparently.
>
>> While I can understand the concept of post-shutdown hook I wonder
>> what gross hack would require a pre-shutdown hook.
>
> TPM requires pre-shutdown.
Yes, a class pre-shutdown. Not a bus pre-shutdown, however.
I have no idea what business has a bus driver before a device shuts
down.
>
>> The Linux development process at its best. There is poor design
>> implemented so when touching the code it is extended to worse because
>
> I'm not sure I completely agree, there is obviously a lot going on with
> bus->shutdown.
>
> If you want to go ahead with your patch then please also rename the
> class shutdown to shutdown_pre to make it clear it is doing something
> different.
That makes sense.
Thanks
Michal
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Michal Suchanek <msuchanek@suse.de> - 2017-08-09 23:40 +0200
Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Jason Gunthorpe <jgunthorpe@obsidianresearch.com> - 2017-08-10 00:00 +0200
Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Michal Suchánek <msuchanek@suse.de> - 2017-08-10 12:20 +0200
Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Jason Gunthorpe <jgunthorpe@obsidianresearch.com> - 2017-08-10 18:40 +0200
Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Michal Suchánek <msuchanek@suse.de> - 2017-08-11 07:10 +0200
Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Henrique de Moraes Holschuh <hmh@hmh.eng.br> - 2017-08-11 17:30 +0200
Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Michal Suchánek <msuchanek@suse.de> - 2017-08-11 19:10 +0200
Re: [PATCH] Do not disable driver and bus shutdown hook when class shutdown hook is set. Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-08-11 14:00 +0200
csiph-web