3.2-stable review patch. If anyone has any objections, please let me know.
------------------ From: Namjae Jeon <[email protected]> commit 2fb7d99d0de3fd8ae869f35ab682581d8455887a upstream. Need to brelse the buffer_head stored in cur_epos and next_epos. Signed-off-by: Namjae Jeon <[email protected]> Signed-off-by: Ashish Sangwan <[email protected]> Signed-off-by: Jan Kara <[email protected]> Signed-off-by: Ben Hutchings <[email protected]> --- fs/udf/inode.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/fs/udf/inode.c +++ b/fs/udf/inode.c @@ -744,6 +744,8 @@ static struct buffer_head *inode_getblk( goal, err); if (!newblocknum) { brelse(prev_epos.bh); + brelse(cur_epos.bh); + brelse(next_epos.bh); *err = -ENOSPC; return NULL; } @@ -774,6 +776,8 @@ static struct buffer_head *inode_getblk( udf_update_extents(inode, laarr, startnum, endnum, &prev_epos); brelse(prev_epos.bh); + brelse(cur_epos.bh); + brelse(next_epos.bh); newblock = udf_get_pblock(inode->i_sb, newblocknum, iinfo->i_location.partitionReferenceNum, 0); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

