|
@@ -667,6 +667,8 @@ static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
|
|
|
{
|
|
|
if (IS_ROOT(dentry))
|
|
|
return 1;
|
|
|
+ if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
|
|
|
+ return 0;
|
|
|
if (!nfs_verify_change_attribute(dir, dentry->d_time))
|
|
|
return 0;
|
|
|
/* Revalidate nfsi->cache_change_attribute before we declare a match */
|
|
@@ -750,6 +752,8 @@ int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
|
|
|
/* Don't revalidate a negative dentry if we're creating a new file */
|
|
|
if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
|
|
|
return 0;
|
|
|
+ if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
|
|
|
+ return 1;
|
|
|
return !nfs_check_verifier(dir, dentry);
|
|
|
}
|
|
|
|