[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <484F4CC1.3000109@cn.fujitsu.com>
Date: Wed, 11 Jun 2008 11:55:45 +0800
From: Shen Feng <shen@...fujitsu.com>
To: linux-ext4@...r.kernel.org, Theodore Tso <tytso@....EDU>,
Mingming Cao <cmm@...ibm.com>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] ext4: Fix the loop condition in ext4_mb_free_committed_blocks
Since md is freed before the do-while checks it,
it's better to change it to while(1).
Signed-off-by: Shen Feng <shen@...fujitsu.com>
---
fs/ext4/mballoc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
index 42553f6..063f820 100644
--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -2572,7 +2572,7 @@ ext4_mb_free_committed_blocks(struct super_block *sb)
kfree(md);
ext4_mb_release_desc(&e4b);
- } while (md);
+ } while (1);
mb_debug("freed %u blocks in %u structures\n", count, count2);
}
--
1.5.4.5
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists