Re: [PATCH] firmware: avoiding multiple replication for samefirmware file

From: Jaswinder Singh
Date: Wed Aug 06 2008 - 05:48:35 EST


Sorry, minor correction.

On Wed, 2008-08-06 at 15:05 +0530, Jaswinder Singh wrote:
> +
> + mutex_lock(&fw_lock);
> + tmp = kzalloc(sizeof(struct firmware_list), GFP_KERNEL);
> + if (!tmp) {
> retval = -ENOMEM;
> - goto out;
> + goto error_kfree_fw;
> + }
> + tmp->name = kstrdup(name, GFP_KERNEL);
> + if (!tmp->name) {
> + retval = -ENOMEM;
> + goto error_kfree_fw_list;
> }

diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c
index 0ba8857..c886113 100644
--- a/drivers/base/firmware_class.c
+++ b/drivers/base/firmware_class.c
@@ -428,12 +428,12 @@ _request_firmware(const struct firmware **firmware_p, const char *name,
if (!firmware)
return -ENOMEM;

- mutex_lock(&fw_lock);
tmp = kzalloc(sizeof(struct firmware_list), GFP_KERNEL);
if (!tmp) {
retval = -ENOMEM;
goto error_kfree_fw;
}
+ mutex_lock(&fw_lock);
tmp->name = kstrdup(name, GFP_KERNEL);
if (!tmp->name) {
retval = -ENOMEM;



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/