From: Jan Kara <jack@suse.cz>
Date: Fri, 4 Jul 2008 16:59:34 +0000 (-0700)
Subject: reiserfs: add missing unlock to an error path in reiserfs_quota_write()
X-Git-Tag: v2.6.26-rc9~45
X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=10dd08dc04c881dcc9f7f19e2a3ad8e0778e4db5;p=linux-2.6-omap-h63xx.git

reiserfs: add missing unlock to an error path in reiserfs_quota_write()

When write in reiserfs_quota_write() fails, we have to properly release
i_mutex. One error path has been missing the unlock...

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---

diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c
index ed424d708e6..1d40f2bd197 100644
--- a/fs/reiserfs/super.c
+++ b/fs/reiserfs/super.c
@@ -2165,8 +2165,10 @@ static ssize_t reiserfs_quota_write(struct super_block *sb, int type,
 		blk++;
 	}
 out:
-	if (len == towrite)
+	if (len == towrite) {
+		mutex_unlock(&inode->i_mutex);
 		return err;
+	}
 	if (inode->i_size < off + len - towrite)
 		i_size_write(inode, off + len - towrite);
 	inode->i_version++;