diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-04-12 07:43:20 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-03 02:47:23 +0300 |
commit | 5ecfcb265f1e77d5de0140d21de3f8ab25441df7 (patch) | |
tree | 4d68a7bff1e27050928dda1fe9573f087115e9f2 /fs/orangefs/orangefs-kernel.h | |
parent | 7b9743eb8932cee1bc646725a6364ccb29d86a2c (diff) | |
download | linux-5ecfcb265f1e77d5de0140d21de3f8ab25441df7.tar.xz |
orangefs: don't open-code inode_lock/inode_unlock
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/orangefs/orangefs-kernel.h')
-rw-r--r-- | fs/orangefs/orangefs-kernel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/orangefs/orangefs-kernel.h b/fs/orangefs/orangefs-kernel.h index a9925e296ceb..2281882f718e 100644 --- a/fs/orangefs/orangefs-kernel.h +++ b/fs/orangefs/orangefs-kernel.h @@ -612,11 +612,11 @@ do { \ static inline void orangefs_i_size_write(struct inode *inode, loff_t i_size) { #if BITS_PER_LONG == 32 && defined(CONFIG_SMP) - mutex_lock(&inode->i_mutex); + inode_lock(inode); #endif i_size_write(inode, i_size); #if BITS_PER_LONG == 32 && defined(CONFIG_SMP) - mutex_unlock(&inode->i_mutex); + inode_unlock(inode); #endif } |