From: matthieu castet <castet.matthieu@free.fr>
To: unlisted-recipients:; (no To-header on input)
Cc: Linux Kernel list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] fix leakes in request_firmware_nowait
Date: Thu, 10 Nov 2005 22:48:47 +0100 [thread overview]
Message-ID: <4373C03F.1070301@free.fr> (raw)
In-Reply-To: <4373BF82.40003@free.fr>
[-- Attachment #1: Type: text/plain, Size: 379 bytes --]
matthieu castet wrote:
> Hi,
>
>
> request_firmware_nowait wasn't checking return error and forgot to free
> memory in some case.
>
> This patch should fix it.
>
> Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr>
>
>
And I forgot a case when _request_firmware return an error.
This one should be correct.
Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr>
[-- Attachment #2: firmware_nowait_leak --]
[-- Type: text/plain, Size: 1076 bytes --]
Index: linux-2.6.14/drivers/base/firmware_class.c
===================================================================
--- linux-2.6.14.orig/drivers/base/firmware_class.c 2005-10-28 02:02:08.000000000 +0200
+++ linux-2.6.14/drivers/base/firmware_class.c 2005-11-10 22:47:23.000000000 +0100
@@ -511,18 +511,23 @@
{
struct firmware_work *fw_work = arg;
const struct firmware *fw;
+ int ret;
if (!arg) {
WARN_ON(1);
return 0;
}
daemonize("%s/%s", "firmware", fw_work->name);
- _request_firmware(&fw, fw_work->name, fw_work->device,
+ ret = _request_firmware(&fw, fw_work->name, fw_work->device,
fw_work->hotplug);
- fw_work->cont(fw, fw_work->context);
- release_firmware(fw);
+ if (ret < 0)
+ fw_work->cont(NULL, fw_work->context);
+ else {
+ fw_work->cont(fw, fw_work->context);
+ release_firmware(fw);
+ }
module_put(fw_work->module);
kfree(fw_work);
- return 0;
+ return ret;
}
/**
@@ -573,6 +578,8 @@
if (ret < 0) {
fw_work->cont(NULL, fw_work->context);
+ module_put(fw_work->module);
+ kfree(fw_work);
return ret;
}
return 0;
next prev parent reply other threads:[~2005-11-10 21:48 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-10 21:45 [PATCH] fix leakes in request_firmware_nowait matthieu castet
2005-11-10 21:48 ` matthieu castet [this message]
2005-11-12 2:13 ` Andrew Morton
2005-11-12 13:48 ` matthieu castet
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=4373C03F.1070301@free.fr \
--to=castet.matthieu@free.fr \
--cc=linux-kernel@vger.kernel.org \
/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