On Wed, Nov 06, 2013 at 10:45:46AM -0500, Dave Jones wrote: > This code was recently patched to not leak memory on the retry path, > but it seems we are also forgetting to brelse the bufferhead. > > Signed-off-by: Dave Jones <davej@xxxxxxxxxxxxxxxxx> Thanks, I have this fix in my tree already. Cheers, - Ted commit dcb9917ba041866686fe152850364826c4622a36 Author: Theodore Ts'o <tytso@xxxxxxx> Date: Thu Oct 31 23:00:24 2013 -0400 ext4: avoid bh leak in retry path of ext4_expand_extra_isize_ea() Reported-by: Dave Jones <davej@xxxxxxxxxx> Signed-off-by: "Theodore Ts'o" <tytso@xxxxxxx> Cc: stable@xxxxxxxxxxxxxxx diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index 03e9beb..1423c48 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c @@ -1352,6 +1352,7 @@ retry: new_extra_isize = s_min_extra_isize; kfree(is); is = NULL; kfree(bs); bs = NULL; + brelse(bh); goto retry; } error = -1; -- 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