public inbox for linux-pm@vger.kernel.org
 help / color / mirror / Atom feed
From: Kay Sievers <kay.sievers@vrfy.org>
To: Michael-Luke Jones <mlj28@cam.ac.uk>
Cc: Matthew Garrett <mjg59@srcf.ucam.org>,
	Rob Landley <rob@landley.net>,
	LKML <linux-kernel@vger.kernel.org>, Pavel Machek <pavel@ucw.cz>,
	pm list <linux-pm@lists.linux-foundation.org>
Subject: Re: [RFC][PATCH -mm 3/3] PM: Disable _request_firmware before hibernation/suspend
Date: Mon, 28 May 2007 11:06:11 +0200	[thread overview]
Message-ID: <1180343171.4242.15.camel@lov.localdomain> (raw)
In-Reply-To: <9D3FC259-8391-4C2F-9F0F-AEF6CB3030E8@cam.ac.uk>

On Mon, 2007-05-28 at 09:48 +0100, Michael-Luke Jones wrote:
> On 28 May 2007, at 08:43, Rafael J. Wysocki wrote:
> 
> >> Seems, that's just the broken synchronous firmware loading interface
> >> with the useless timeout handling. The nowait version of the same  
> >> loader
> >> doesn't time out, and should not have that problem. The sync version
> >> should be removed from the kernel, it just causes all sorts of  
> >> problems
> >> since it exists.
> >>
> >> Userspace should handle the async request just fine when it comes  
> >> back
> >> running, regardless of the time it was submitted.
> >
> > Okay, so the solution is to convert the drivers to use
> > request_firmware_nowait() instead of request_firmware() in  
> > their .resume()
> > routines.
> 
> [added Rob Landley to CC]
> 
> I think asynchronous loading should be made the default behaviour.  
> However, we need to think and document how to do firmware loading.
> 
> Firmware loading can be done at two different times:
> Device Driver Load
> First use of Device Driver
> 
> For a network device, this correlates to when the driver is first  
> loaded into memory or at 'ifconfig up' respectively.
> 
> At device driver load, firmware loading must be asynchronous. This is  
> because device driver init can occur before userspace runs and  
> registers a hotplug/uevent event handler. If device use is attempted  
> before firmware loads, a -ENOFIRMWARE call would be great so that  
> userspace and thus the user can be clearly informed what the problem is.

Why would a driver create an interface before it has the needed
firmware loaded?

> However, at 'first use' firmware loading, the synchronous interface  
> should remain. 'ifconfig up' either works or it doesn't, and as I see  
> it, has to just hang around until firmware turns up.

What kind of network driver does create an interface for a
non-functioning device? That sounds like a bug on its own.

If a driver binds to a device, it should just have the firmware already
loaded, and not wait until its used. What's the reason for such a
behavior, to let a driver pretend it can handle a device, but it doesn't
even know if all the needed pieces are available on the system?

> One more thing, it seems that the asynchronous firmware loading  
> thread just spawns a _request_firmware() call which then times out at  
> 60 seconds. I think, if the first request fails it spawns another. 60  
> seconds is *far* too long for this type of thing, and this was set at  
> 10 seconds before the last two kernel releases (which is even a bit  
> slow itself). Unfortunately, this appears to a case of quite senior  
> kernel developers pushing a bodge upstream rather than fixing the  
> underlying issue :( [1] [2]

The underlying issue are the driver authors, that's not so easy to
fix. :)

Well, 10 seconds are just to short for userspace to react on some
setups, from tiny boxes which are busy, to 512 CPU boxes enumerating
thousands of devices, all had problems here. Any timeout for a
firmware-request is just a broken concept, the request should wait
forever, to be fulfilled or canceled from userspace when it's ready.

Kay

  reply	other threads:[~2007-05-28  9:06 UTC|newest]

Thread overview: 79+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <200705272229.21263.rjw@sisk.pl>
2007-05-27 20:30 ` [RFC][PATCH -mm 1/3] PM: Hibernation and suspend notifiers Rafael J. Wysocki
2007-05-27 20:30 ` [RFC][PATCH -mm 2/3] PM: Disable usermode helper before hibernation/suspend Rafael J. Wysocki
2007-05-27 20:31 ` [RFC][PATCH -mm 3/3] PM: Disable _request_firmware " Rafael J. Wysocki
     [not found] ` <200705272230.56863.rjw@sisk.pl>
2007-05-28 13:04   ` [RFC][PATCH -mm 2/3] PM: Disable usermode helper " Pavel Machek
     [not found] ` <200705272231.54535.rjw@sisk.pl>
2007-05-27 20:45   ` [RFC][PATCH -mm 3/3] PM: Disable _request_firmware " Michael-Luke Jones
2007-05-27 20:49   ` Matthew Garrett
     [not found]   ` <20070527204955.GA22202@srcf.ucam.org>
2007-05-27 21:45     ` Rafael J. Wysocki
2007-05-27 21:49     ` Kay Sievers
     [not found]     ` <3ae72650705271449q37f523c3t5980541122ab871@mail.gmail.com>
2007-05-27 22:01       ` Rafael J. Wysocki
2007-05-27 22:04       ` Matthew Garrett
     [not found]       ` <20070527220412.GC22687@srcf.ucam.org>
2007-05-27 22:16         ` Kay Sievers
     [not found]         ` <1180304166.3131.66.camel@lov.localdomain>
2007-05-28  7:43           ` Rafael J. Wysocki
2007-05-28  8:48             ` Michael-Luke Jones
2007-05-28  9:06               ` Kay Sievers [this message]
2007-05-28 10:26                 ` Michael-Luke Jones
2007-05-28 12:01                   ` Kay Sievers
2007-05-28 12:07                     ` Michael-Luke Jones
2007-05-28 10:41                 ` Michael-Luke Jones
2007-05-29 21:19                 ` Rob Landley
2007-05-29 22:51               ` Rob Landley
2007-05-30 19:50                 ` Pavel Machek
2007-05-28 11:15             ` Pavel Machek
2007-05-28 11:24               ` Kay Sievers
2007-05-28 11:28                 ` Pavel Machek
2007-05-28 11:38                 ` Michael-Luke Jones
2007-05-28 11:45                   ` Pavel Machek
2007-05-28 11:51                   ` Kay Sievers
2007-05-28 12:26                     ` Michael-Luke Jones
2007-05-28 12:47                       ` Kay Sievers
2007-05-28 13:00                       ` Pavel Machek
2007-05-28 13:10                         ` Michael-Luke Jones
2007-05-28 11:28               ` Rafael J. Wysocki
     [not found]     ` <200705272345.04518.rjw@sisk.pl>
2007-05-27 22:01       ` Matthew Garrett
2007-05-28  8:30       ` Nigel Cunningham
2007-05-28 11:22         ` Rafael J. Wysocki
     [not found]       ` <20070527220158.GB22687@srcf.ucam.org>
2007-05-28  7:44         ` Rafael J. Wysocki
2007-05-28 16:09         ` Alan Stern
2007-05-28 16:12           ` Matthew Garrett
2007-05-28 16:43             ` Alan Stern
2007-05-28 16:54               ` Matthew Garrett
2007-05-28 20:03                 ` Alan Stern
2007-05-28 20:57               ` Pavel Machek
2007-05-28 22:29                 ` Alan Stern
     [not found]                 ` <Pine.LNX.4.44L0.0705281719200.10323-100000@netrider.rowland.org>
2007-05-29 20:09                   ` David Brownell
2007-06-04 11:00                   ` Pavel Machek
2007-05-28 13:07   ` Pavel Machek
2007-05-28 15:55   ` Alan Stern
2007-05-28 17:43     ` Rafael J. Wysocki
2007-05-28 20:51       ` Ray Lee
2007-05-28 20:59         ` Pavel Machek
     [not found]   ` <6BD5252F-96CD-49D9-86C7-18115294D913@cam.ac.uk>
2007-05-27 21:55     ` Rafael J. Wysocki
2007-05-28 13:01     ` Pavel Machek
2007-05-29 20:41     ` Rob Landley
     [not found] ` <200705272230.04478.rjw@sisk.pl>
2007-05-28  9:49   ` [RFC][PATCH -mm 1/3] PM: Hibernation and suspend notifiers Nigel Cunningham
2007-05-28 13:12   ` Pavel Machek
2007-05-28 17:26     ` Rafael J. Wysocki
2007-05-28 15:56   ` Alan Stern
2007-05-28 17:29     ` Rafael J. Wysocki
2007-05-29 22:24     ` Rafael J. Wysocki
     [not found]     ` <200705300024.32455.rjw@sisk.pl>
2007-05-30 15:37       ` Pavel Machek
     [not found]       ` <20070530153740.GA4772@ucw.cz>
2007-05-30 20:44         ` Rafael J. Wysocki
     [not found]         ` <200705302244.25927.rjw@sisk.pl>
2007-05-30 21:11           ` Rafael J. Wysocki
     [not found]           ` <200705302311.40123.rjw@sisk.pl>
2007-05-30 22:24             ` Nigel Cunningham
2007-05-31  5:44               ` Rafael J. Wysocki
     [not found]               ` <200705310744.44488.rjw@sisk.pl>
2007-05-31 14:23                 ` Pavel Machek
     [not found]                 ` <20070531142357.GK27309@elf.ucw.cz>
2007-05-31 20:02                   ` Rafael J. Wysocki
2007-05-31 21:56                     ` Nigel Cunningham
2007-05-30 22:29             ` Pavel Machek
     [not found]             ` <20070530222956.GD27309@elf.ucw.cz>
2007-05-31  5:42               ` Rafael J. Wysocki
2007-06-02  0:41 ` [RFC][PATCH -mm 0/2] PM: Hibernation and suspend notifiers (rev. 2) Rafael J. Wysocki
     [not found] ` <200706020241.53788.rjw@sisk.pl>
2007-06-02  0:43   ` [RFC][PATCH -mm 1/2] PM: Introduce hibernation and suspend notifiers Rafael J. Wysocki
2007-06-02  0:44   ` [RFC][PATCH -mm 2/2] PM: Disable usermode helper before hibernation and suspend Rafael J. Wysocki
     [not found]   ` <200706020243.20117.rjw@sisk.pl>
2007-06-03 16:41     ` [RFC][PATCH -mm 1/2] PM: Introduce hibernation and suspend notifiers Pavel Machek
     [not found]     ` <20070603164143.GB4093@ucw.cz>
2007-06-03 22:38       ` Rafael J. Wysocki
     [not found]       ` <200706040038.54161.rjw@sisk.pl>
2007-06-03 22:59         ` Pavel Machek
     [not found]         ` <20070603225903.GC2971@elf.ucw.cz>
2007-06-04  7:56           ` Rafael J. Wysocki
     [not found]   ` <200706020244.50180.rjw@sisk.pl>
2007-06-03 16:42     ` [RFC][PATCH -mm 2/2] PM: Disable usermode helper before hibernation and suspend Pavel Machek
     [not found] <20070604110052.GI4363@elf.ucw.cz>
2007-06-05 18:45 ` [RFC][PATCH -mm 3/3] PM: Disable _request_firmware before hibernation/suspend Alan Stern
     [not found] ` <Pine.LNX.4.44L0.0706051420351.2606-100000@iolanthe.rowland.org>
2007-06-05 20:26   ` Pavel Machek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1180343171.4242.15.camel@lov.localdomain \
    --to=kay.sievers@vrfy.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@lists.linux-foundation.org \
    --cc=mjg59@srcf.ucam.org \
    --cc=mlj28@cam.ac.uk \
    --cc=pavel@ucw.cz \
    --cc=rob@landley.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox