The patch titled knfsd: nfsd4: clean up exp_pseudoroot has been removed from the -mm tree. Its filename is knfsd-nfsd4-clean-up-exp_pseudoroot.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: knfsd: nfsd4: clean up exp_pseudoroot From: J.Bruce Fields <bfields@xxxxxxxxxxxx> The previous patch enables some minor simplification here. Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/nfsd/export.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff -puN fs/nfsd/export.c~knfsd-nfsd4-clean-up-exp_pseudoroot fs/nfsd/export.c --- a/fs/nfsd/export.c~knfsd-nfsd4-clean-up-exp_pseudoroot +++ a/fs/nfsd/export.c @@ -1058,14 +1058,11 @@ exp_pseudoroot(struct auth_domain *clp, if (IS_ERR(exp) && PTR_ERR(exp) == -EAGAIN) return nfserr_dropit; if (exp == NULL) - rv = nfserr_perm; + return nfserr_perm; else if (IS_ERR(exp)) - rv = nfserrno(PTR_ERR(exp)); - else { - rv = fh_compose(fhp, exp, - exp->ex_dentry, NULL); - exp_put(exp); - } + return nfserrno(PTR_ERR(exp)); + rv = fh_compose(fhp, exp, exp->ex_dentry, NULL); + exp_put(exp); return rv; } _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html