* [PATCH 9/10] drivers/ata: introduce missing kfree
@ 2009-08-01 8:55 Julia Lawall
2009-08-04 4:49 ` Tejun Heo
0 siblings, 1 reply; 3+ messages in thread
From: Julia Lawall @ 2009-08-01 8:55 UTC (permalink / raw)
To: jgarzik, linux-ide, linux-kernel, kernel-janitors
From: Julia Lawall <julia@diku.dk>
Error handling code following a kzalloc should free the allocated data.
The semantic match that finds the problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@r exists@
local idexpression x;
statement S;
expression E;
identifier f,f1,l;
position p1,p2;
expression *ptr != NULL;
@@
x@p1 = \(kmalloc\|kzalloc\|kcalloc\)(...);
...
if (x == NULL) S
<... when != x
when != if (...) { <+...x...+> }
(
x->f1 = E
|
(x->f1 == NULL || ...)
|
f(...,x->f1,...)
)
...>
(
return \(0\|<+...x...+>\|ptr\);
|
return@p2 ...;
)
@script:python@
p1 << r.p1;
p2 << r.p2;
@@
print "* file: %s kmalloc %s return %s" % (p1[0].file,p1[0].line,p2[0].line)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
---
drivers/ata/pata_at91.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drivers/ata/pata_at91.c b/drivers/ata/pata_at91.c
index 5702aff..46fb883 100644
--- a/drivers/ata/pata_at91.c
+++ b/drivers/ata/pata_at91.c
@@ -261,7 +261,8 @@ static int __devinit pata_at91_probe(struct platform_device *pdev)
if (IS_ERR(info->mck)) {
dev_err(dev, "failed to get access to mck clock\n");
- return -ENODEV;
+ ret = -ENODEV;
+ goto err_clk_get;
}
info->cs = board->chipselect;
@@ -308,6 +309,7 @@ err_alt_ioremap:
err_ide_ioremap:
clk_put(info->mck);
+err_clk_get:
kfree(info);
return ret;
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 9/10] drivers/ata: introduce missing kfree
2009-08-01 8:55 [PATCH 9/10] drivers/ata: introduce missing kfree Julia Lawall
@ 2009-08-04 4:49 ` Tejun Heo
2009-08-15 7:15 ` Sergey Matyukevich
0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2009-08-04 4:49 UTC (permalink / raw)
To: Julia Lawall; +Cc: jgarzik, linux-ide, linux-kernel, kernel-janitors, geomatsi
Julia Lawall wrote:
...
> ---
> drivers/ata/pata_at91.c | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/ata/pata_at91.c b/drivers/ata/pata_at91.c
> index 5702aff..46fb883 100644
> --- a/drivers/ata/pata_at91.c
> +++ b/drivers/ata/pata_at91.c
> @@ -261,7 +261,8 @@ static int __devinit pata_at91_probe(struct platform_device *pdev)
>
> if (IS_ERR(info->mck)) {
> dev_err(dev, "failed to get access to mck clock\n");
> - return -ENODEV;
> + ret = -ENODEV;
> + goto err_clk_get;
> }
>
> info->cs = board->chipselect;
> @@ -308,6 +309,7 @@ err_alt_ioremap:
>
> err_ide_ioremap:
> clk_put(info->mck);
> +err_clk_get:
> kfree(info);
cc'ing Matyukevich Sergey. Matyukevich, is it possible to use
devm_kzalloc() instead?
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-08-15 7:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-01 8:55 [PATCH 9/10] drivers/ata: introduce missing kfree Julia Lawall
2009-08-04 4:49 ` Tejun Heo
2009-08-15 7:15 ` Sergey Matyukevich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).