Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3258b4fa authored by Trond Myklebust's avatar Trond Myklebust
Browse files

NFS: Remove bogus nfs_mark_for_revalidate() in nfs_lookup



The parent of the newly materialised dentry has just been revalidated...

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent cf8ba45e
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -929,14 +929,8 @@ static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, stru
no_entry:
	res = d_materialise_unique(dentry, inode);
	if (res != NULL) {
		struct dentry *parent;
		if (IS_ERR(res))
			goto out_unlock;
		/* Was a directory renamed! */
		parent = dget_parent(res);
		if (!IS_ROOT(parent))
			nfs_mark_for_revalidate(parent->d_inode);
		dput(parent);
		dentry = res;
	}
	nfs_set_verifier(dentry, nfs_save_change_attribute(dir));