diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2012-03-28 17:29:45 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2012-03-28 17:29:45 -0400 |
commit | fe2e39d8782d885755139304d8dba0b3e5bfa878 (patch) | |
tree | 200fb998fe94b9ccd93d07c59656b8f5ab62c5d7 /drivers/base/firmware_class.c | |
parent | 9a4768d849d28a79566aa37de19b9852d2da8ec4 (diff) |
firmware_class: Rework usermodehelper check
Instead of two functions, read_lock_usermodehelper() and
usermodehelper_is_disabled(), used in combination, introduce
usermodehelper_read_trylock() that will only return with umhelper_sem
held if usermodehelper_disabled is unset (and will return -EAGAIN
otherwise) and make _request_firmware() use it.
Rename read_unlock_usermodehelper() to
usermodehelper_read_unlock() to follow the naming convention of the
new function.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/base/firmware_class.c')
-rw-r--r-- | drivers/base/firmware_class.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c index 6c9387d646ec..deee871e509c 100644 --- a/drivers/base/firmware_class.c +++ b/drivers/base/firmware_class.c | |||
@@ -533,12 +533,10 @@ static int _request_firmware(const struct firmware **firmware_p, | |||
533 | return 0; | 533 | return 0; |
534 | } | 534 | } |
535 | 535 | ||
536 | read_lock_usermodehelper(); | 536 | retval = usermodehelper_read_trylock(); |
537 | 537 | if (WARN_ON(retval)) { | |
538 | if (WARN_ON(usermodehelper_is_disabled())) { | ||
539 | dev_err(device, "firmware: %s will not be loaded\n", name); | 538 | dev_err(device, "firmware: %s will not be loaded\n", name); |
540 | retval = -EBUSY; | 539 | goto out_nolock; |
541 | goto out; | ||
542 | } | 540 | } |
543 | 541 | ||
544 | if (uevent) | 542 | if (uevent) |
@@ -573,8 +571,9 @@ static int _request_firmware(const struct firmware **firmware_p, | |||
573 | fw_destroy_instance(fw_priv); | 571 | fw_destroy_instance(fw_priv); |
574 | 572 | ||
575 | out: | 573 | out: |
576 | read_unlock_usermodehelper(); | 574 | usermodehelper_read_unlock(); |
577 | 575 | ||
576 | out_nolock: | ||
578 | if (retval) { | 577 | if (retval) { |
579 | release_firmware(firmware); | 578 | release_firmware(firmware); |
580 | *firmware_p = NULL; | 579 | *firmware_p = NULL; |