summaryrefslogtreecommitdiffstats
path: root/fs/orangefs/orangefs-utils.c
diff options
context:
space:
mode:
authorMartin Brandenburg2016-03-14 21:59:38 +0100
committerMike Marshall2016-03-23 22:36:13 +0100
commitd57521a653e7ac2e8edaabfff202caf87c61f08a (patch)
treea7bddb5f886c9e426b7da1a75af617893f3a5b50 /fs/orangefs/orangefs-utils.c
parentorangefs: put register_chrdev immediately before register_filesystem (diff)
downloadkernel-qcow2-linux-d57521a653e7ac2e8edaabfff202caf87c61f08a.tar.gz
kernel-qcow2-linux-d57521a653e7ac2e8edaabfff202caf87c61f08a.tar.xz
kernel-qcow2-linux-d57521a653e7ac2e8edaabfff202caf87c61f08a.zip
orangefs: remove inode->i_lock wrapper
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/orangefs-utils.c')
-rw-r--r--fs/orangefs/orangefs-utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/orangefs/orangefs-utils.c b/fs/orangefs/orangefs-utils.c
index 8ef9e9646748..df4ad04407e2 100644
--- a/fs/orangefs/orangefs-utils.c
+++ b/fs/orangefs/orangefs-utils.c
@@ -170,11 +170,11 @@ static int copy_attributes_to_inode(struct inode *inode,
rounded_up_size =
(inode_size + (4096 - (inode_size % 4096)));
- orangefs_lock_inode(inode);
+ spin_lock(&inode->i_lock);
inode->i_bytes = inode_size;
inode->i_blocks =
(unsigned long)(rounded_up_size / 512);
- orangefs_unlock_inode(inode);
+ spin_unlock(&inode->i_lock);
/*
* NOTE: make sure all the places we're called
@@ -194,9 +194,9 @@ static int copy_attributes_to_inode(struct inode *inode,
default:
inode->i_size = PAGE_CACHE_SIZE;
- orangefs_lock_inode(inode);
+ spin_lock(&inode->i_lock);
inode_set_bytes(inode, inode->i_size);
- orangefs_unlock_inode(inode);
+ spin_unlock(&inode->i_lock);
break;
}