dm-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [PATCH] : Fix for memory leak in setup indexes
@ 2010-08-05  6:57 Shahzad Hussain Bangash
  0 siblings, 0 replies; only message in thread
From: Shahzad Hussain Bangash @ 2010-08-05  6:57 UTC (permalink / raw)
  To: neilb, dm-devel

[-- Attachment #1: Type: text/plain, Size: 62 bytes --]



-- 
Shahzad Hussain Bangash <ext-shahzad.bangash@nokia.com>

[-- Attachment #2: 0001-Fixes-memory-leak-in-setup_indexes.patch --]
[-- Type: text/x-patch, Size: 1154 bytes --]

From 57da07e6847cedd14d54ba1675264377846a026c Mon Sep 17 00:00:00 2001
From: Shahzad Bangash <ext-shahzad.bangash@nokia.com>
Date: Tue, 3 Aug 2010 13:58:48 +0300
Subject: [PATCH] Fixes memory leak in setup_indexes

Signed-off-by: Shahzad Bangash <ext-shahzad.bangash@nokia.com>
---
 drivers/md/dm-table.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c
index e869128..05691f2 100644
--- a/drivers/md/dm-table.c
+++ b/drivers/md/dm-table.c
@@ -876,7 +876,7 @@ static int setup_indexes(struct dm_table *t)
 {
 	int i;
 	unsigned int total = 0;
-	sector_t *indexes;
+	sector_t *indexes, *indexes_head;
 
 	/* allocate the space for *all* the indexes */
 	for (i = t->depth - 2; i >= 0; i--) {
@@ -888,6 +888,8 @@ static int setup_indexes(struct dm_table *t)
 	if (!indexes)
 		return -ENOMEM;
 
+	indexes_head = indexes;
+
 	/* set up internal nodes, bottom-up */
 	for (i = t->depth - 2; i >= 0; i--) {
 		t->index[i] = indexes;
@@ -895,6 +897,7 @@ static int setup_indexes(struct dm_table *t)
 		setup_btree_index(i, t);
 	}
 
+	vfree(indexes_head);
 	return 0;
 }
 
-- 
1.6.3.3


[-- Attachment #3: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-08-05  6:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-05  6:57 [PATCH] : Fix for memory leak in setup indexes Shahzad Hussain Bangash

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).