diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2021-09-28 11:24:57 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-11-18 19:17:00 +0100 |
commit | 597e9c7a4acebcdc29bf87e6672ad8e256beb2f4 (patch) | |
tree | 79357cd39094dbcf21ddc02cedc8051a1e71b9da | |
parent | 69e0be0efe53fb012f5db32bc328590745cf8f71 (diff) | |
download | linux-stable-597e9c7a4acebcdc29bf87e6672ad8e256beb2f4.tar.gz linux-stable-597e9c7a4acebcdc29bf87e6672ad8e256beb2f4.tar.bz2 linux-stable-597e9c7a4acebcdc29bf87e6672ad8e256beb2f4.zip |
NFS: Ignore the directory size when marking for revalidation
[ Upstream commit a6a361c4ca3cc3e6f3b39d1b6bca1de90f5f4b11 ]
If we want to revalidate the directory, then just mark the change
attribute as invalid.
Fixes: 13c0b082b6a9 ("NFS: Replace use of NFS_INO_REVAL_PAGECACHE when checking cache validity")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Tested-by: Benjamin Coddington <bcodding@redhat.com>
Reviewed-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | fs/nfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 1a6d2867fba4..085b8ecdc17d 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -1413,7 +1413,7 @@ out_force: static void nfs_mark_dir_for_revalidate(struct inode *inode) { spin_lock(&inode->i_lock); - nfs_set_cache_invalid(inode, NFS_INO_REVAL_PAGECACHE); + nfs_set_cache_invalid(inode, NFS_INO_INVALID_CHANGE); spin_unlock(&inode->i_lock); } |