提交 1dc8548c 编写于 作者: L Laurent Navet 提交者: Greg Kroah-Hartman

staging: lustre: use ERR_CAST() function

use ERR_CAST() function instead of ERR_PTR() and PTR_ERR()
found using coccinelle and err_cast.cocci
Signed-off-by: NLaurent Navet <laurent.navet@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 c4f39553
...@@ -147,7 +147,7 @@ ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *paren ...@@ -147,7 +147,7 @@ ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *paren
inode = search_inode_for_lustre(sb, fid); inode = search_inode_for_lustre(sb, fid);
if (IS_ERR(inode)) if (IS_ERR(inode))
RETURN(ERR_PTR(PTR_ERR(inode))); RETURN(ERR_CAST(inode));
if (is_bad_inode(inode)) { if (is_bad_inode(inode)) {
/* we didn't find the right inode.. */ /* we didn't find the right inode.. */
......
...@@ -110,7 +110,7 @@ static struct ll_cl_context *ll_cl_init(struct file *file, ...@@ -110,7 +110,7 @@ static struct ll_cl_context *ll_cl_init(struct file *file,
env = cl_env_get(&refcheck); env = cl_env_get(&refcheck);
if (IS_ERR(env)) if (IS_ERR(env))
return ERR_PTR(PTR_ERR(env)); return ERR_CAST(env);
lcc = &vvp_env_info(env)->vti_io_ctx; lcc = &vvp_env_info(env)->vti_io_ctx;
memset(lcc, 0, sizeof(*lcc)); memset(lcc, 0, sizeof(*lcc));
......
...@@ -443,7 +443,7 @@ struct dt_object *local_file_find_or_create_with_fid(const struct lu_env *env, ...@@ -443,7 +443,7 @@ struct dt_object *local_file_find_or_create_with_fid(const struct lu_env *env,
ls = ls_device_get(dt); ls = ls_device_get(dt);
if (IS_ERR(ls)) { if (IS_ERR(ls)) {
dto = ERR_PTR(PTR_ERR(ls)); dto = ERR_CAST(ls);
} else { } else {
/* create the object */ /* create the object */
dti->dti_attr.la_valid = LA_MODE; dti->dti_attr.la_valid = LA_MODE;
...@@ -537,7 +537,7 @@ local_index_find_or_create_with_fid(const struct lu_env *env, ...@@ -537,7 +537,7 @@ local_index_find_or_create_with_fid(const struct lu_env *env,
ls = ls_device_get(dt); ls = ls_device_get(dt);
if (IS_ERR(ls)) { if (IS_ERR(ls)) {
dto = ERR_PTR(PTR_ERR(ls)); dto = ERR_CAST(ls);
} else { } else {
/* create the object */ /* create the object */
dti->dti_attr.la_valid = LA_MODE; dti->dti_attr.la_valid = LA_MODE;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册