Browse Source

[PATCH] knfsd: improve the test for cross-device-rename in nfsd

Just testing the i_sb isn't really enough, at least the vfsmnt must be the
same.  Thanks Al.

Cc: Al Viro <viro@ftp.linux.org.uk>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
NeilBrown 19 years ago
parent
commit
a56f39375a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fs/nfsd/vfs.c

+ 1 - 1
fs/nfsd/vfs.c

@@ -1553,7 +1553,7 @@ nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
 	tdir = tdentry->d_inode;
 	tdir = tdentry->d_inode;
 
 
 	err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
 	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;
 		goto out;
 
 
 	err = nfserr_perm;
 	err = nfserr_perm;