The patch titled knfsd: improve the test for cross-device-rename in nfsd has been removed from the -mm tree. Its filename is knfsd-improve-the-test-for-cross-device-rename-in-nfsd.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: knfsd: improve the test for cross-device-rename in nfsd From: NeilBrown <neilb@xxxxxxx> Just testing the i_sb isn't really enough, at least the vfsmnt must be the same. Thanks Al. Cc: Al Viro <viro@xxxxxxxxxxxxxxxx> Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/nfsd/vfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/nfsd/vfs.c~knfsd-improve-the-test-for-cross-device-rename-in-nfsd fs/nfsd/vfs.c --- a/fs/nfsd/vfs.c~knfsd-improve-the-test-for-cross-device-rename-in-nfsd +++ a/fs/nfsd/vfs.c @@ -1553,7 +1553,7 @@ nfsd_rename(struct svc_rqst *rqstp, stru tdir = tdentry->d_inode; err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev; - if (fdir->i_sb != tdir->i_sb) + if (ffhp->fh_export != tfhp->fh_export) goto out; err = nfserr_perm; _ Patches currently in -mm which might be from neilb@xxxxxxx are origin.patch git-klibc.patch md-dm-reduce-stack-usage-with-stacked-block-devices.patch lockdep-annotate-sunrpc-code.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