diff options
| author | Dan Carpenter <error27@gmail.com> | 2009-04-09 12:07:10 -0400 |
|---|---|---|
| committer | Jan Kara <jack@suse.cz> | 2009-04-27 10:49:52 -0400 |
| commit | a069e9cee1dba2f847839d325f46ce6976ed1b76 (patch) | |
| tree | f1af53fdeb9474fd6afe2d0d27f24ae3b92658b5 /fs | |
| parent | fd1b52435a6d9663de896e8437ef067372916ef3 (diff) | |
ext2: missing unlock in ext2_quota_write()
The inode->i_mutex should be unlocked.
Found by smatch (http://repo.or.cz/w/smatch.git). Compile tested.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/ext2/super.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index f983225266dc..5c4afe652245 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, | |||
| 1395 | blk++; | 1395 | blk++; |
| 1396 | } | 1396 | } |
| 1397 | out: | 1397 | out: |
| 1398 | if (len == towrite) | 1398 | if (len == towrite) { |
| 1399 | mutex_unlock(&inode->i_mutex); | ||
| 1399 | return err; | 1400 | return err; |
| 1401 | } | ||
| 1400 | if (inode->i_size < off+len-towrite) | 1402 | if (inode->i_size < off+len-towrite) |
| 1401 | i_size_write(inode, off+len-towrite); | 1403 | i_size_write(inode, off+len-towrite); |
| 1402 | inode->i_version++; | 1404 | inode->i_version++; |
