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/file.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/file.c')
-rw-r--r-- | fs/jfs/file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jfs/file.c b/fs/jfs/file.c index 0e026a7bdcd4..4ce7735dd042 100644 --- a/fs/jfs/file.c +++ b/fs/jfs/file.c | |||
@@ -38,17 +38,17 @@ int jfs_fsync(struct file *file, loff_t start, loff_t end, int datasync) | |||
38 | if (rc) | 38 | if (rc) |
39 | return rc; | 39 | return rc; |
40 | 40 | ||
41 | mutex_lock(&inode->i_mutex); | 41 | inode_lock(inode); |
42 | if (!(inode->i_state & I_DIRTY_ALL) || | 42 | if (!(inode->i_state & I_DIRTY_ALL) || |
43 | (datasync && !(inode->i_state & I_DIRTY_DATASYNC))) { | 43 | (datasync && !(inode->i_state & I_DIRTY_DATASYNC))) { |
44 | /* Make sure committed changes hit the disk */ | 44 | /* Make sure committed changes hit the disk */ |
45 | jfs_flush_journal(JFS_SBI(inode->i_sb)->log, 1); | 45 | jfs_flush_journal(JFS_SBI(inode->i_sb)->log, 1); |
46 | mutex_unlock(&inode->i_mutex); | 46 | inode_unlock(inode); |
47 | return rc; | 47 | return rc; |
48 | } | 48 | } |
49 | 49 | ||
50 | rc |= jfs_commit_inode(inode, 1); | 50 | rc |= jfs_commit_inode(inode, 1); |
51 | mutex_unlock(&inode->i_mutex); | 51 | inode_unlock(inode); |
52 | 52 | ||
53 | return rc ? -EIO : 0; | 53 | return rc ? -EIO : 0; |
54 | } | 54 | } |