* [PATCH] firmware: fix request_firmware() error handling
@ 2010-08-22 15:09 Pekka Enberg
2010-08-22 17:10 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Pekka Enberg @ 2010-08-22 15:09 UTC (permalink / raw)
To: gregkh; +Cc: linux-kernel, Pekka Enberg, Dmitry Torokhov
If _request_firmware() fails and we do release_firmware(), update the pointer
pointed to by 'firmware_p' so that we don't return a free'd pointer to the
caller.
This patch fixes a boot-time crash on my MacBook that's caused by failing
isight_firmware_load(). The bug was introduced in commit f8a4bd34 ("firmware
loader: embed device into firmware_priv structure") and makes 2.6.36-rc1
unusable on my box.
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
---
Here's a picture of the oops:
http://twitpic.com/2h76gv
Unfortunately I don't have a serial console hooked up so I couldn't get a text
version of it.
drivers/base/firmware_class.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c
index c8a44f5..40af43e 100644
--- a/drivers/base/firmware_class.c
+++ b/drivers/base/firmware_class.c
@@ -568,7 +568,7 @@ static int _request_firmware(const struct firmware **firmware_p,
out:
if (retval) {
release_firmware(firmware);
- firmware_p = NULL;
+ *firmware_p = NULL;
}
return retval;
--
1.6.3.3
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] firmware: fix request_firmware() error handling
2010-08-22 15:09 [PATCH] firmware: fix request_firmware() error handling Pekka Enberg
@ 2010-08-22 17:10 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2010-08-22 17:10 UTC (permalink / raw)
To: Pekka Enberg; +Cc: linux-kernel, Dmitry Torokhov
On Sun, Aug 22, 2010 at 06:09:30PM +0300, Pekka Enberg wrote:
> If _request_firmware() fails and we do release_firmware(), update the pointer
> pointed to by 'firmware_p' so that we don't return a free'd pointer to the
> caller.
>
> This patch fixes a boot-time crash on my MacBook that's caused by failing
> isight_firmware_load(). The bug was introduced in commit f8a4bd34 ("firmware
> loader: embed device into firmware_priv structure") and makes 2.6.36-rc1
> unusable on my box.
>
> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Thanks, already in my tree and linux-next and will be going to Linus on
Monday.
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-08-22 17:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-22 15:09 [PATCH] firmware: fix request_firmware() error handling Pekka Enberg
2010-08-22 17:10 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox