From: Aneesh Kumar K.V Date: Tue, 4 Nov 2008 14:10:50 +0000 (-0500) Subject: ext4: fix missing ext4_unlock_group in error path X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ae2d9fb18e575ed37ffc241ece4bf68f0be4ae32;p=deliverable%2Flinux.git ext4: fix missing ext4_unlock_group in error path If we try to free a block which is already freed, the code was returning without first unlocking the group. Signed-off-by: Aneesh Kumar K.V Signed-off-by: "Theodore Ts'o" --- diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index dfe17a134052..444ad998f72e 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -4441,6 +4441,7 @@ ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b, else if (block >= (entry->start_blk + entry->count)) n = &(*n)->rb_right; else { + ext4_unlock_group(sb, group); ext4_error(sb, __func__, "Double free of blocks %d (%d %d)\n", block, entry->start_blk, entry->count);