[PATCH 2.6] Fix memory leaks in w83781d and asb100

From: Jean Delvare
Date: Sun May 02 2004 - 15:07:06 EST


Quoting myself

> U-ho. I think I've introduced a memory leak with this patch :(
>
> For drivers that handle subclients (asb100 and w83781d on i2c), the
> sublient memory is never released if I read the code correctly. This
> is because we now free the private data on unload, assuming that it
> contains the i2c client data as well. That's true for the main i2c
> client, but not for the subclients (data == NULL so nothing is freed).
>
> Could someone take a look and confirm?

I could test and actually saw memory leaking when cycling the w83781d
driver at a sustained rate (5/s).

> I can see two different fixes:
>
> 1* When freeing the memory, free the data if it's not NULL (main
> client), else free client (subclients). Cleaner (I suppose?).
>
> 2* When creating subclients, do data = &client instead of data = NULL.
> Then freeing will work. Less code, faster. Are there side effects? (I
> don't think so)
>
> My preference would go to 2*.

I ended up implementing 1*. That's cleaner and there's actually almost
no extra code.

Mark, can you confirm that I'm doing the correct thing? I'll do
something similar in our CVS repository (for now, the asb100 and w83781d
drivers had not their memory allocation scheme reworked there).

Greg, please apply if it looks good to you. Sorry for introducing the
leak in the first place...

Thanks.

--- linux-2.6.6-rc3/drivers/i2c/chips/asb100.c.orig Sun May 2 13:52:29 2004
+++ linux-2.6.6-rc3/drivers/i2c/chips/asb100.c Sun May 2 21:51:17 2004
@@ -855,7 +855,13 @@
return err;
}

- kfree(i2c_get_clientdata(client));
+ if (i2c_get_clientdata(client)==NULL) {
+ /* subclients */
+ kfree(client);
+ } else {
+ /* main client */
+ kfree(i2c_get_clientdata(client));
+ }

return 0;
}
--- linux-2.6.6-rc3/drivers/i2c/chips/w83781d.c.orig Sun May 2 15:09:44 2004
+++ linux-2.6.6-rc3/drivers/i2c/chips/w83781d.c Sun May 2 21:51:11 2004
@@ -1336,7 +1336,13 @@
return err;
}

- kfree(i2c_get_clientdata(client));
+ if (i2c_get_clientdata(client)==NULL) {
+ /* subclients */
+ kfree(client);
+ } else {
+ /* main client */
+ kfree(i2c_get_clientdata(client));
+ }

return 0;
}



--
Jean Delvare
http://khali.linux-fr.org/
-
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/