diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-22 15:40:57 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-22 18:04:28 -0500 |
commit | 5955102c9984fa081b2d570cfac75c97eecf8f3b (patch) | |
tree | a4744386eac4b916e847eb4eedfada158f6527b4 /fs/jfs/super.c | |
parent | 57b8f112cfe6622ddddb8c2641206bb5fa8a112d (diff) |
wrappers for ->i_mutex access
parallel to mutex_{lock,unlock,trylock,is_locked,lock_nested},
inode_foo(inode) being mutex_foo(&inode->i_mutex).
Please, use those for access to ->i_mutex; over the coming cycle
->i_mutex will become rwsem, with ->lookup() done with it held
only shared.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/jfs/super.c')
-rw-r--r-- | fs/jfs/super.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 900925b5eb8c..4f5d85ba8e23 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c | |||
@@ -792,7 +792,7 @@ static ssize_t jfs_quota_write(struct super_block *sb, int type, | |||
792 | struct buffer_head tmp_bh; | 792 | struct buffer_head tmp_bh; |
793 | struct buffer_head *bh; | 793 | struct buffer_head *bh; |
794 | 794 | ||
795 | mutex_lock(&inode->i_mutex); | 795 | inode_lock(inode); |
796 | while (towrite > 0) { | 796 | while (towrite > 0) { |
797 | tocopy = sb->s_blocksize - offset < towrite ? | 797 | tocopy = sb->s_blocksize - offset < towrite ? |
798 | sb->s_blocksize - offset : towrite; | 798 | sb->s_blocksize - offset : towrite; |
@@ -824,7 +824,7 @@ static ssize_t jfs_quota_write(struct super_block *sb, int type, | |||
824 | } | 824 | } |
825 | out: | 825 | out: |
826 | if (len == towrite) { | 826 | if (len == towrite) { |
827 | mutex_unlock(&inode->i_mutex); | 827 | inode_unlock(inode); |
828 | return err; | 828 | return err; |
829 | } | 829 | } |
830 | if (inode->i_size < off+len-towrite) | 830 | if (inode->i_size < off+len-towrite) |
@@ -832,7 +832,7 @@ out: | |||
832 | inode->i_version++; | 832 | inode->i_version++; |
833 | inode->i_mtime = inode->i_ctime = CURRENT_TIME; | 833 | inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
834 | mark_inode_dirty(inode); | 834 | mark_inode_dirty(inode); |
835 | mutex_unlock(&inode->i_mutex); | 835 | inode_unlock(inode); |
836 | return len - towrite; | 836 | return len - towrite; |
837 | } | 837 | } |
838 | 838 | ||