From: Theodore Ts'o Date: Fri, 1 Nov 2013 03:00:24 +0000 (-0400) Subject: ext4: avoid bh leak in retry path of ext4_expand_extra_isize_ea() X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=ef0d74867fc7e440b0e945e7fe47a862dbc9c9ef;p=linux-edison.git ext4: avoid bh leak in retry path of ext4_expand_extra_isize_ea() commit dcb9917ba041866686fe152850364826c4622a36 upstream. Reported-by: Dave Jones Signed-off-by: "Theodore Ts'o" Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index 03e9bebba19..1423c4816a4 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;