提交 d0ebd9c0 编写于 作者: J J.Bruce Fields 提交者: Linus Torvalds

[PATCH] knfsd: nfsd4: clean up exp_pseudoroot

The previous patch enables some minor simplification here.
Signed-off-by: NJ. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: NNeil Brown <neilb@suse.de>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 f38b20c6
...@@ -1058,14 +1058,11 @@ exp_pseudoroot(struct auth_domain *clp, struct svc_fh *fhp, ...@@ -1058,14 +1058,11 @@ exp_pseudoroot(struct auth_domain *clp, struct svc_fh *fhp,
if (IS_ERR(exp) && PTR_ERR(exp) == -EAGAIN) if (IS_ERR(exp) && PTR_ERR(exp) == -EAGAIN)
return nfserr_dropit; return nfserr_dropit;
if (exp == NULL) if (exp == NULL)
rv = nfserr_perm; return nfserr_perm;
else if (IS_ERR(exp)) else if (IS_ERR(exp))
rv = nfserrno(PTR_ERR(exp)); return nfserrno(PTR_ERR(exp));
else { rv = fh_compose(fhp, exp, exp->ex_dentry, NULL);
rv = fh_compose(fhp, exp, exp_put(exp);
exp->ex_dentry, NULL);
exp_put(exp);
}
return rv; return rv;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册