mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-16 11:32:41 +00:00
PM: Print a warning if firmware is requested when tasks are frozen
Some drivers erroneously use request_firmware() from their ->resume() (or ->thaw(), or ->restore()) callbacks, which is not going to work unless the firmware has been built in. This causes system resume to stall until the firmware-loading timeout expires, which makes users think that the resume has failed and reboot their machines unnecessarily. For this reason, make _request_firmware() print a warning and return immediately with error code if it has been called when tasks are frozen and it's impossible to start any new usermode helpers. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Reviewed-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>
This commit is contained in:
parent
e1866b33b1
commit
a144c6a6c9
3 changed files with 19 additions and 0 deletions
|
@ -111,7 +111,12 @@ call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait)
|
|||
|
||||
extern void usermodehelper_init(void);
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
extern int usermodehelper_disable(void);
|
||||
extern void usermodehelper_enable(void);
|
||||
extern bool usermodehelper_is_disabled(void);
|
||||
#else
|
||||
static inline bool usermodehelper_is_disabled(void) { return false; }
|
||||
#endif
|
||||
|
||||
#endif /* __LINUX_KMOD_H__ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue