From: Wan ZongShun <mcuos.com@gmail.com>
To: David Woodhouse <dwmw2@infradead.org>,
linux-mtd <linux-mtd@lists.infradead.org>
Cc: eric.y.miao@gmail.com,
linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
Subject: [PATCH 1/3] MTD/pxa: patch for error return value method of pxa2xx-flash.c
Date: Sat, 05 Jun 2010 14:40:30 +0800 [thread overview]
Message-ID: <4C09F15E.9020408@gmail.com> (raw)
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.
Signed-off-by :Wan ZongShun <mcuos.com@gmail.com>
---
drivers/mtd/maps/pxa2xx-flash.c | 47 ++++++++++++++++++++++++++++----------
1 files changed, 34 insertions(+), 13 deletions(-)
diff --git a/drivers/mtd/maps/pxa2xx-flash.c b/drivers/mtd/maps/pxa2xx-flash.c
index dd90880..1d2583f 100644
--- a/drivers/mtd/maps/pxa2xx-flash.c
+++ b/drivers/mtd/maps/pxa2xx-flash.c
@@ -60,12 +60,21 @@ static int __init pxa2xx_flash_probe(struct platform_device *pdev)
int ret = 0;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!res)
- return -ENODEV;
+ if (!res) {
+ ret = -ENODEV;
+ goto fail0;
+ }
+
+ if (!request_mem_region(res->start, resource_size(res), pdev->name)) {
+ ret = -EBUSY;
+ goto fail0;
+ }
info = kzalloc(sizeof(struct pxa2xx_flash_info), GFP_KERNEL);
- if (!info)
- return -ENOMEM;
+ if (!info) {
+ ret = -ENOMEM;
+ goto fail1;
+ }
info->map.name = (char *) flash->name;
info->map.bankwidth = flash->width;
@@ -78,13 +87,17 @@ static int __init 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 fail2;
}
info->map.cached =
ioremap_cached(info->map.phys, info->map.size);
- if (!info->map.cached)
+ if (!info->map.cached) {
printk(KERN_WARNING "Failed to ioremap cached %s\n",
info->map.name);
+ ret = -ENOMEM;
+ goto fail3;
+ }
info->map.inval_cache = pxa2xx_map_inval_cache;
simple_map_init(&info->map);
@@ -97,10 +110,8 @@ static int __init 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 fail4;
}
info->mtd->owner = THIS_MODULE;
@@ -124,13 +135,21 @@ static int __init pxa2xx_flash_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, info);
return 0;
+
+fail4: iounmap(info->map.cached);
+fail3: iounmap(info->map.virt);
+fail2: kfree(info);
+fail1: release_mem_region(res->start, resource_size(res));
+fail0:
+ return ret;
}
static int __devexit pxa2xx_flash_remove(struct platform_device *dev)
{
struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
+ struct resource *res;
- platform_set_drvdata(dev, NULL);
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
#ifdef CONFIG_MTD_PARTITIONS
if (info->nr_parts)
@@ -141,10 +160,12 @@ static int __devexit pxa2xx_flash_remove(struct platform_device *dev)
map_destroy(info->mtd);
iounmap(info->map.virt);
- if (info->map.cached)
- iounmap(info->map.cached);
+ iounmap(info->map.cached);
kfree(info->parts);
kfree(info);
+ release_mem_region(res->start, resource_size(res));
+ platform_set_drvdata(dev, NULL);
+
return 0;
}
--
1.6.3.3
WARNING: multiple messages have this Message-ID (diff)
From: mcuos.com@gmail.com (Wan ZongShun)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] MTD/pxa: patch for error return value method of pxa2xx-flash.c
Date: Sat, 05 Jun 2010 14:40:30 +0800 [thread overview]
Message-ID: <4C09F15E.9020408@gmail.com> (raw)
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.
Signed-off-by :Wan ZongShun <mcuos.com@gmail.com>
---
drivers/mtd/maps/pxa2xx-flash.c | 47 ++++++++++++++++++++++++++++----------
1 files changed, 34 insertions(+), 13 deletions(-)
diff --git a/drivers/mtd/maps/pxa2xx-flash.c b/drivers/mtd/maps/pxa2xx-flash.c
index dd90880..1d2583f 100644
--- a/drivers/mtd/maps/pxa2xx-flash.c
+++ b/drivers/mtd/maps/pxa2xx-flash.c
@@ -60,12 +60,21 @@ static int __init pxa2xx_flash_probe(struct platform_device *pdev)
int ret = 0;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!res)
- return -ENODEV;
+ if (!res) {
+ ret = -ENODEV;
+ goto fail0;
+ }
+
+ if (!request_mem_region(res->start, resource_size(res), pdev->name)) {
+ ret = -EBUSY;
+ goto fail0;
+ }
info = kzalloc(sizeof(struct pxa2xx_flash_info), GFP_KERNEL);
- if (!info)
- return -ENOMEM;
+ if (!info) {
+ ret = -ENOMEM;
+ goto fail1;
+ }
info->map.name = (char *) flash->name;
info->map.bankwidth = flash->width;
@@ -78,13 +87,17 @@ static int __init 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 fail2;
}
info->map.cached =
ioremap_cached(info->map.phys, info->map.size);
- if (!info->map.cached)
+ if (!info->map.cached) {
printk(KERN_WARNING "Failed to ioremap cached %s\n",
info->map.name);
+ ret = -ENOMEM;
+ goto fail3;
+ }
info->map.inval_cache = pxa2xx_map_inval_cache;
simple_map_init(&info->map);
@@ -97,10 +110,8 @@ static int __init 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 fail4;
}
info->mtd->owner = THIS_MODULE;
@@ -124,13 +135,21 @@ static int __init pxa2xx_flash_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, info);
return 0;
+
+fail4: iounmap(info->map.cached);
+fail3: iounmap(info->map.virt);
+fail2: kfree(info);
+fail1: release_mem_region(res->start, resource_size(res));
+fail0:
+ return ret;
}
static int __devexit pxa2xx_flash_remove(struct platform_device *dev)
{
struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
+ struct resource *res;
- platform_set_drvdata(dev, NULL);
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
#ifdef CONFIG_MTD_PARTITIONS
if (info->nr_parts)
@@ -141,10 +160,12 @@ static int __devexit pxa2xx_flash_remove(struct platform_device *dev)
map_destroy(info->mtd);
iounmap(info->map.virt);
- if (info->map.cached)
- iounmap(info->map.cached);
+ iounmap(info->map.cached);
kfree(info->parts);
kfree(info);
+ release_mem_region(res->start, resource_size(res));
+ platform_set_drvdata(dev, NULL);
+
return 0;
}
--
1.6.3.3
next reply other threads:[~2010-06-05 6:40 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-05 6:40 Wan ZongShun [this message]
2010-06-05 6:40 ` [PATCH 1/3] MTD/pxa: patch for error return value method of pxa2xx-flash.c Wan ZongShun
2010-06-05 7:14 ` Eric Miao
2010-06-05 7:14 ` Eric Miao
2010-06-05 7:38 ` Wan ZongShun
2010-06-05 7:38 ` Wan ZongShun
2010-06-05 7:53 ` Wan ZongShun
2010-06-05 7:53 ` Wan ZongShun
2010-06-05 7:59 ` Eric Miao
2010-06-05 7:59 ` Eric Miao
2010-06-05 7:58 ` Eric Miao
2010-06-05 7:58 ` Eric Miao
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=4C09F15E.9020408@gmail.com \
--to=mcuos.com@gmail.com \
--cc=dwmw2@infradead.org \
--cc=eric.y.miao@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mtd@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.