1
0
Fork 0

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>
hifive-unleashed-5.1
Shraddha Barke 2015-10-31 15:58:41 +05:30 committed by Greg Kroah-Hartman
parent 74d4ec1149
commit abcf8080eb
2 changed files with 2 additions and 12 deletions

View File

@ -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);
}
/*****************************************************************************

View File

@ -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));