aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorGuo Chao <yan@linux.vnet.ibm.com>2013-01-06 23:38:47 -0500
committerTheodore Ts'o <tytso@mit.edu>2013-01-06 23:38:47 -0500
commit0ecaef0644973e9006fdbc6974301047aaff9bc6 (patch)
tree8c0b65a4401435ee094c00e7a09bce81f4b90685 /fs
parentext4: fix configuration dependencies for ext4 ACLs and security labels (diff)
downloadlinux-dev-0ecaef0644973e9006fdbc6974301047aaff9bc6.tar.xz
linux-dev-0ecaef0644973e9006fdbc6974301047aaff9bc6.zip
ext4: release buffer in failed path in dx_probe()
If checksum fails, we should also release the buffer read from previous iteration. Signed-off-by: Guo Chao <yan@linux.vnet.ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>- Cc: stable@vger.kernel.org -- fs/ext4/namei.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Diffstat (limited to 'fs')
-rw-r--r--fs/ext4/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 8990165346ee..f8be1c288a1c 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -722,7 +722,7 @@ dx_probe(const struct qstr *d_name, struct inode *dir,
ext4_warning(dir->i_sb, "Node failed checksum");
brelse(bh);
*err = ERR_BAD_DX_DIR;
- goto fail;
+ goto fail2;
}
set_buffer_verified(bh);