Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

firmware loader: allow builtin firmware load even if usermodehelper is disabled

In commit a144c6a6c924 ("PM: Print a warning if firmware is requested
when tasks are frozen") we not only printed a warning if somebody tried
to load the firmware when tasks are frozen - we also failed the load.

But that check was done before the check for built-in firmware, and then
when we disallowed usermode helpers during bootup (commit 288d5abec831:
"Boot up with usermodehelper disabled"), that actually means that
built-in modules can no longer load their firmware even if the firmware
is built in too. Which used to work, and some people depended on it for
the R100 driver.

So move the test for usermodehelper_is_disabled() down, to after
checking the built-in firmware.

This should fix:

https://bugzilla.kernel.org/show_bug.cgi?id=40952

Reported-by: James Cloos <cloos@hjcloos.com>
Bisected-by: Elimar Riesebieter <riesebie@lxtec.de>
Cc: Michel Dänzer <michel@daenzer.net>
Cc: Rafael Wysocki <rjw@sisk.pl>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Valdis Kletnieks <valdis.kletnieks@vt.edu>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

+6 -5
+6 -5
drivers/base/firmware_class.c
··· 521 521 if (!firmware_p) 522 522 return -EINVAL; 523 523 524 - if (WARN_ON(usermodehelper_is_disabled())) { 525 - dev_err(device, "firmware: %s will not be loaded\n", name); 526 - return -EBUSY; 527 - } 528 - 529 524 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL); 530 525 if (!firmware) { 531 526 dev_err(device, "%s: kmalloc(struct firmware) failed\n", ··· 532 537 if (fw_get_builtin_firmware(firmware, name)) { 533 538 dev_dbg(device, "firmware: using built-in firmware %s\n", name); 534 539 return 0; 540 + } 541 + 542 + if (WARN_ON(usermodehelper_is_disabled())) { 543 + dev_err(device, "firmware: %s will not be loaded\n", name); 544 + retval = -EBUSY; 545 + goto out; 535 546 } 536 547 537 548 if (uevent)