mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 09:13:55 +08:00
reiserfs: Remove i_mutex use from reiserfs_quota_write()
We don't need i_mutex in reiserfs_quota_write() because writes to quota file are serialized by dqio_mutex anyway. Changes to quota files outside of quota code are forbidded and enforced by NOATIME and IMMUTABLE bits. Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
0b7f7cefae
commit
67f1648d21
@ -2270,7 +2270,6 @@ static ssize_t reiserfs_quota_write(struct super_block *sb, int type,
|
|||||||
(unsigned long long)off, (unsigned long long)len);
|
(unsigned long long)off, (unsigned long long)len);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
|
|
||||||
while (towrite > 0) {
|
while (towrite > 0) {
|
||||||
tocopy = sb->s_blocksize - offset < towrite ?
|
tocopy = sb->s_blocksize - offset < towrite ?
|
||||||
sb->s_blocksize - offset : towrite;
|
sb->s_blocksize - offset : towrite;
|
||||||
@ -2302,16 +2301,13 @@ static ssize_t reiserfs_quota_write(struct super_block *sb, int type,
|
|||||||
blk++;
|
blk++;
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
if (len == towrite) {
|
if (len == towrite)
|
||||||
mutex_unlock(&inode->i_mutex);
|
|
||||||
return err;
|
return err;
|
||||||
}
|
|
||||||
if (inode->i_size < off + len - towrite)
|
if (inode->i_size < off + len - towrite)
|
||||||
i_size_write(inode, off + len - towrite);
|
i_size_write(inode, off + len - towrite);
|
||||||
inode->i_version++;
|
inode->i_version++;
|
||||||
inode->i_mtime = inode->i_ctime = CURRENT_TIME;
|
inode->i_mtime = inode->i_ctime = CURRENT_TIME;
|
||||||
mark_inode_dirty(inode);
|
mark_inode_dirty(inode);
|
||||||
mutex_unlock(&inode->i_mutex);
|
|
||||||
return len - towrite;
|
return len - towrite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user