* [PATCHv2 3/3] MTD/pxa: patch for error return value method of pxa2xx-flash
@ 2010-06-05 9:14 Wan ZongShun
0 siblings, 0 replies; only message in thread
From: Wan ZongShun @ 2010-06-05 9:14 UTC (permalink / raw)
To: linux-arm-kernel
This patch is to re-implement the 'pxa2xx-flash.c' error return value method
of probe() and remove() function,the old return way can arouse the 'info' memory
leak risk.
This patch has been reviewed by Eric, according to his advice, I modify some wrong
issues of previous patch and resend to maillist.
Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
---
drivers/mtd/maps/pxa2xx-flash.c | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/drivers/mtd/maps/pxa2xx-flash.c b/drivers/mtd/maps/pxa2xx-flash.c
index b5bb1a4..e789358 100644
--- a/drivers/mtd/maps/pxa2xx-flash.c
+++ b/drivers/mtd/maps/pxa2xx-flash.c
@@ -78,7 +78,8 @@ static int __devinit pxa2xx_flash_probe(struct platform_device *pdev)
if (!info->map.virt) {
printk(KERN_WARNING "Failed to ioremap %s\n",
info->map.name);
- return -ENOMEM;
+ ret = -ENOMEM;
+ goto fail1;
}
info->map.cached =
ioremap_cached(info->map.phys, info->map.size);
@@ -97,10 +98,8 @@ static int __devinit pxa2xx_flash_probe(struct platform_device *pdev)
info->mtd = do_map_probe(flash->map_name, &info->map);
if (!info->mtd) {
- iounmap((void *)info->map.virt);
- if (info->map.cached)
- iounmap(info->map.cached);
- return -EIO;
+ ret = -EIO;
+ goto fail2;
}
info->mtd->owner = THIS_MODULE;
@@ -124,6 +123,12 @@ static int __devinit pxa2xx_flash_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, info);
return 0;
+
+fail2: iounmap(info->map.virt);
+ if (info->map.cached)
+ iounmap(info->map.cached);
+fail1: kfree(info);
+ return ret;
}
static int __devexit pxa2xx_flash_remove(struct platform_device *dev)
--
1.6.3.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-06-05 9:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-05 9:14 [PATCHv2 3/3] MTD/pxa: patch for error return value method of pxa2xx-flash Wan ZongShun
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).