On Mon, Oct 13, 2008 at 03:16:50PM +0530, Aneesh Kumar K.V wrote: > With this patch we track the block freed during a transaction using > rb tree. We also make sure contiguous blocks freed are collected > in one rb node. > > Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@xxxxxxxxxxxxxxxxxx> > Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> > --- Andreas mentioned that when merging the free blocks extents we should not merge extents from two different transaction. diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 2f38754..b29dead 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -4430,7 +4432,12 @@ static void ext4_mb_poll_new_transaction(struct super_block *sb, static int can_merge(struct ext4_free_data *entry1, struct ext4_free_data *entry2) { - if (entry1->start_blk + entry1->count == entry2->start_blk) + /* + * Even though blocks are contiguous, we don't want to + * merge if they don't belong to the same transaction + */ + if (entry1->t_tid == entry2->t_tid && + (entry1->start_blk + entry1->count) == entry2->start_blk) return 1; return 0; } @@ -4454,6 +4461,7 @@ ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b, new_entry->start_blk = block; new_entry->group = group; new_entry->count = count; + new_entry->t_tid = handle->h_transaction->t_tid; new_node = &new_entry->node; ext4_lock_group(sb, group); diff --git a/fs/ext4/mballoc.h b/fs/ext4/mballoc.h index 07dff39..c82abb9 100644 --- a/fs/ext4/mballoc.h +++ b/fs/ext4/mballoc.h @@ -111,6 +111,11 @@ struct ext4_free_data { */ struct rb_node node; + /* this link the free block + * information from ext4_sb_info + */ + struct list_head list; + /* group this free block * extent belong */ @@ -120,10 +125,8 @@ struct ext4_free_data { ext4_grpblk_t start_blk; ext4_grpblk_t count; - /* this link the free block - * information from ext4_sb_info - */ - struct list_head list; + /* transaction this extent belong */ + tid_t t_tid; }; struct ext4_group_info { -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html