* + ext4-fix-credit-calculation-in-ext4_ext_calc_credits_for_insert.patch added to -mm tree
@ 2006-12-04 20:51 akpm
0 siblings, 0 replies; only message in thread
From: akpm @ 2006-12-04 20:51 UTC (permalink / raw)
To: mm-commits; +Cc: johann.lombardi, alex, linux-ext4
The patch titled
ext4: fix credit calculation in ext4_ext_calc_credits_for_insert
has been added to the -mm tree. Its filename is
ext4-fix-credit-calculation-in-ext4_ext_calc_credits_for_insert.patch
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: ext4: fix credit calculation in ext4_ext_calc_credits_for_insert
From: Johann Lombardi <johann.lombardi@bull.net>
Fix a nit in ext4_ext_calc_credits_for_insert(). Besides, credits for the
new root are already added in the index split accounting.
Signed-off-by: Johann Lombardi <johann.lombardi@bull.net>
Signed-off-by: Alex Tomas <alex@clusterfs.com>
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---
fs/ext4/extents.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff -puN fs/ext4/extents.c~ext4-fix-credit-calculation-in-ext4_ext_calc_credits_for_insert fs/ext4/extents.c
--- a/fs/ext4/extents.c~ext4-fix-credit-calculation-in-ext4_ext_calc_credits_for_insert
+++ a/fs/ext4/extents.c
@@ -1534,16 +1534,17 @@ int inline ext4_ext_calc_credits_for_ins
/*
* tree can be full, so it would need to grow in depth:
- * allocation + old root + new root
+ * we need one credit to modify old root, credits for
+ * new root will be added in split accounting
*/
- needed += 2 + 1 + 1;
+ needed += 1;
/*
* Index split can happen, we would need:
* allocate intermediate indexes (bitmap + group)
* + change two blocks at each level, but root (already included)
*/
- needed = (depth * 2) + (depth * 2);
+ needed += (depth * 2) + (depth * 2);
/* any allocation modifies superblock */
needed += 1;
_
Patches currently in -mm which might be from johann.lombardi@bull.net are
ext4-fix-credit-calculation-in-ext4_ext_calc_credits_for_insert.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-12-04 20:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-04 20:51 + ext4-fix-credit-calculation-in-ext4_ext_calc_credits_for_insert.patch added to -mm tree akpm
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).