aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/quota_global.c
diff options
context:
space:
mode:
authorTao Ma <tao.ma@oracle.com>2009-07-30 16:07:10 +0800
committerJoel Becker <joel.becker@oracle.com>2009-07-30 11:06:06 -0700
commite9956fae7dbce6ac770e7a00436c496ddbbd3215 (patch)
treee1b1cd0c59a598ec671e563a732f6935133a1520 /fs/ocfs2/quota_global.c
parent0584974a77796581eb3a64b6c5005edac4a95128 (diff)
downloadkernel_samsung_smdk4412-e9956fae7dbce6ac770e7a00436c496ddbbd3215.zip
kernel_samsung_smdk4412-e9956fae7dbce6ac770e7a00436c496ddbbd3215.tar.gz
kernel_samsung_smdk4412-e9956fae7dbce6ac770e7a00436c496ddbbd3215.tar.bz2
ocfs2/quota: Release lock for error in ocfs2_quota_write.
ocfs2_quota_write needs to release the lock if it fails to read quota block. So use "goto out" instead of "return err". Signed-off-by: Tao Ma <tao.ma@oracle.com> Acked-by: Jan Kara <jack@suse.cz> Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/quota_global.c')
-rw-r--r--fs/ocfs2/quota_global.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/quota_global.c b/fs/ocfs2/quota_global.c
index cc8785c..d604a6a 100644
--- a/fs/ocfs2/quota_global.c
+++ b/fs/ocfs2/quota_global.c
@@ -238,7 +238,7 @@ ssize_t ocfs2_quota_write(struct super_block *sb, int type,
}
if (err) {
mlog_errno(err);
- return err;
+ goto out;
}
lock_buffer(bh);
if (new)