From: Minchan Kim <minchan.kim@gmail.com>
To: Greg Kroah-Hartman <greg@kroah.com>
Cc: Nitin Gupta <ngupta@vflare.org>, linux-mm <linux-mm@kvack.org>
Subject: [PATCH] Free memory when create_device is failed
Date: Mon, 11 Jan 2010 16:15:53 +0900 [thread overview]
Message-ID: <20100111161553.3acebae9.minchan.kim@barrios-desktop> (raw)
Hi, Greg.
I don't know where I send this patch.
Do I send this patch to akpm or only you and LKML?
== CUT HERE ==
If create_device is failed, it can't free gendisk and request_queue
of preceding devices. It cause memory leak.
This patch fixes it.
Signed-off-by: Minchan Kim <minchan.kim@gmail.com>
CC: Nitin Gupta <ngupta@vflare.org>
---
drivers/staging/ramzswap/ramzswap_drv.c | 21 +++++++++++++--------
1 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/ramzswap/ramzswap_drv.c b/drivers/staging/ramzswap/ramzswap_drv.c
index 18196f3..faa412d 100644
--- a/drivers/staging/ramzswap/ramzswap_drv.c
+++ b/drivers/staging/ramzswap/ramzswap_drv.c
@@ -1292,7 +1292,7 @@ static struct block_device_operations ramzswap_devops = {
.owner = THIS_MODULE,
};
-static void create_device(struct ramzswap *rzs, int device_id)
+static int create_device(struct ramzswap *rzs, int device_id)
{
mutex_init(&rzs->lock);
INIT_LIST_HEAD(&rzs->backing_swap_extent_list);
@@ -1301,7 +1301,7 @@ static void create_device(struct ramzswap *rzs, int device_id)
if (!rzs->queue) {
pr_err("Error allocating disk queue for device %d\n",
device_id);
- return;
+ return 0;
}
blk_queue_make_request(rzs->queue, ramzswap_make_request);
@@ -1313,7 +1313,7 @@ static void create_device(struct ramzswap *rzs, int device_id)
blk_cleanup_queue(rzs->queue);
pr_warning("Error allocating disk structure for device %d\n",
device_id);
- return;
+ return 0;
}
rzs->disk->major = ramzswap_major;
@@ -1331,6 +1331,7 @@ static void create_device(struct ramzswap *rzs, int device_id)
add_disk(rzs->disk);
rzs->init_done = 0;
+ return 1;
}
static void destroy_device(struct ramzswap *rzs)
@@ -1368,16 +1369,20 @@ static int __init ramzswap_init(void)
/* Allocate the device array and initialize each one */
pr_info("Creating %u devices ...\n", num_devices);
devices = kzalloc(num_devices * sizeof(struct ramzswap), GFP_KERNEL);
- if (!devices) {
- ret = -ENOMEM;
+ if (!devices)
goto out;
- }
for (i = 0; i < num_devices; i++)
- create_device(&devices[i], i);
-
+ if (!create_device(&devices[i], i)) {
+ ret = i;
+ goto free_devices;
+ }
return 0;
+free_devices:
+ for (i = 0; i < ret; i++)
+ destroy_device(&devices[i]);
out:
+ ret = -ENOMEM;
unregister_blkdev(ramzswap_major, "ramzswap");
return ret;
}
--
1.5.6.3
--
Kind regards,
Minchan Kim
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next reply other threads:[~2010-01-11 7:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-11 7:15 Minchan Kim [this message]
2010-01-11 8:23 ` Nitin Gupta
2010-01-11 8:31 ` Minchan Kim
2010-01-11 15:20 ` Greg KH
2010-01-15 1:36 ` patch staging-ramzswap-free-memory-when-create_device-is-failed.patch added to gregkh-2.6 tree gregkh
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=20100111161553.3acebae9.minchan.kim@barrios-desktop \
--to=minchan.kim@gmail.com \
--cc=greg@kroah.com \
--cc=linux-mm@kvack.org \
--cc=ngupta@vflare.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox