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: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
74d4ec1149
commit
abcf8080eb
2 changed files with 2 additions and 12 deletions
|
@ -427,7 +427,7 @@ static void ccc_object_size_lock(struct cl_object *obj)
|
|||
{
|
||||
struct inode *inode = ccc_object_inode(obj);
|
||||
|
||||
cl_isize_lock(inode);
|
||||
ll_inode_size_lock(inode);
|
||||
cl_object_attr_lock(obj);
|
||||
}
|
||||
|
||||
|
@ -436,7 +436,7 @@ static void ccc_object_size_unlock(struct cl_object *obj)
|
|||
struct inode *inode = ccc_object_inode(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,
|
|||
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)
|
||||
{
|
||||
LASSERT(mutex_is_locked(&ll_i2info(inode)->lli_size_mutex));
|
||||
|
|
Loading…
Add table
Reference in a new issue