Commit abcf8080 authored by Shraddha Barke's avatar Shraddha Barke Committed by Greg Kroah-Hartman

Staging: lustre: lclient: Remove wrapper functions

The functions cl_isize_lock and cl_isize_unlock can be replaced with
direct calls to ll_inode_size_lock and ll_inode_size_unlock. Thus
drop the wrapper functions.
Signed-off-by: default avatarShraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 74d4ec11
...@@ -427,7 +427,7 @@ static void ccc_object_size_lock(struct cl_object *obj) ...@@ -427,7 +427,7 @@ static void ccc_object_size_lock(struct cl_object *obj)
{ {
struct inode *inode = ccc_object_inode(obj); struct inode *inode = ccc_object_inode(obj);
cl_isize_lock(inode); ll_inode_size_lock(inode);
cl_object_attr_lock(obj); cl_object_attr_lock(obj);
} }
...@@ -436,7 +436,7 @@ static void ccc_object_size_unlock(struct cl_object *obj) ...@@ -436,7 +436,7 @@ static void ccc_object_size_unlock(struct cl_object *obj)
struct inode *inode = ccc_object_inode(obj); struct inode *inode = ccc_object_inode(obj);
cl_object_attr_unlock(obj); cl_object_attr_unlock(obj);
cl_isize_unlock(inode); ll_inode_size_unlock(inode);
} }
/***************************************************************************** /*****************************************************************************
......
...@@ -1285,16 +1285,6 @@ static inline struct ll_file_data *cl_iattr2fd(struct inode *inode, ...@@ -1285,16 +1285,6 @@ static inline struct ll_file_data *cl_iattr2fd(struct inode *inode,
return LUSTRE_FPRIVATE(attr->ia_file); return LUSTRE_FPRIVATE(attr->ia_file);
} }
static inline void cl_isize_lock(struct inode *inode)
{
ll_inode_size_lock(inode);
}
static inline void cl_isize_unlock(struct inode *inode)
{
ll_inode_size_unlock(inode);
}
static inline void cl_isize_write_nolock(struct inode *inode, loff_t kms) static inline void cl_isize_write_nolock(struct inode *inode, loff_t kms)
{ {
LASSERT(mutex_is_locked(&ll_i2info(inode)->lli_size_mutex)); LASSERT(mutex_is_locked(&ll_i2info(inode)->lli_size_mutex));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment