public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext2: fix missing mutex_unlock in error path
@ 2009-04-14  7:36 Akinobu Mita
  2009-04-14  7:43 ` Manish Katiyar
  2009-04-14  7:43 ` Jan Kara
  0 siblings, 2 replies; 5+ messages in thread
From: Akinobu Mita @ 2009-04-14  7:36 UTC (permalink / raw)
  To: Jan Kara; +Cc: linux-ext4, linux-kernel

Add missing mutex_unlock in error path in ext2_quota_write()

Cc: Jan Kara <jack@suse.cz>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
---
diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index f983225..5c4afe6 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -1395,8 +1395,10 @@ static ssize_t ext2_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++;

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-04-14  9:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-14  7:36 [PATCH] ext2: fix missing mutex_unlock in error path Akinobu Mita
2009-04-14  7:43 ` Manish Katiyar
2009-04-14  7:43 ` Jan Kara
2009-04-14  9:35   ` Akinobu Mita
2009-04-14  9:43     ` Akinobu Mita

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox