The patch titled knfsd: nfsd4: fix open_confirm locking has been added to the -mm tree. Its filename is knfsd-nfsd4-fix-open_confirm-locking.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: knfsd: nfsd4: fix open_confirm locking From: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Fix an improper unlock in an error path. Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/nfsd/nfs4state.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN fs/nfsd/nfs4state.c~knfsd-nfsd4-fix-open_confirm-locking fs/nfsd/nfs4state.c --- a/fs/nfsd/nfs4state.c~knfsd-nfsd4-fix-open_confirm-locking +++ a/fs/nfsd/nfs4state.c @@ -2252,8 +2252,9 @@ nfsd4_open_confirm(struct svc_rqst *rqst (int)current_fh->fh_dentry->d_name.len, current_fh->fh_dentry->d_name.name); - if ((status = fh_verify(rqstp, current_fh, S_IFREG, 0))) - goto out; + status = fh_verify(rqstp, current_fh, S_IFREG, 0); + if (status) + return status; nfs4_lock_state(); _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxxxx are origin.patch knfsd-nfsd4-fix-open_confirm-locking.patch knfsd-nfsd-call-nfsd_setuser-on-fh_compose-fix-nfsd4-permissions-problem.patch knfsd-nfsd4-remove-superfluous-grace-period-checks.patch knfsd-nfsd-fix-misplaced-fh_unlock-in-nfsd_link.patch knfsd-svcrpc-gss-simplify-rsc_parse.patch knfsd-nfsd4-fix-some-open-argument-tests.patch knfsd-nfsd4-fix-open-flag-passing.patch knfsd-svcrpc-simplify-nfsd-rpcsec_gss-integrity-code.patch knfsd-nfsd-mark-rqstp-to-prevent-use-of-sendfile-in-privacy-case.patch knfsd-svcrpc-gss-server-side-implementation-of-rpcsec_gss-privacy.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