The patch titled knfsd: nfsd: remove superfluous assignment from nfsd_lookup has been removed from the -mm tree. Its filename was knfsd-nfsd-remove-superfluous-assignment-from-nfsd_lookup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: knfsd: nfsd: remove superfluous assignment from nfsd_lookup From: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> The "err" variable will only be used in the final return, which always happens after either the preceding err = fh_compose(...); or after the following err = nfserrno(host_err); So the earlier assignment to err is ignored. Signed-off-by: "J. Bruce Fields" <bfields@xxxxxxxxxxxxxx> Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/nfsd/vfs.c | 2 -- 1 file changed, 2 deletions(-) diff -puN fs/nfsd/vfs.c~knfsd-nfsd-remove-superfluous-assignment-from-nfsd_lookup fs/nfsd/vfs.c --- a/fs/nfsd/vfs.c~knfsd-nfsd-remove-superfluous-assignment-from-nfsd_lookup +++ a/fs/nfsd/vfs.c @@ -168,8 +168,6 @@ nfsd_lookup(struct svc_rqst *rqstp, stru exp = fhp->fh_export; exp_get(exp); - err = nfserr_acces; - /* Lookup the name, but don't follow links */ if (isdotent(name, len)) { if (len==1) _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxxxx are origin.patch auth_gss-unregister-gss_domain-when-unloading-module.patch git-vfs-lease-api.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