aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4proc.c
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@hammerspace.com>2021-04-11 14:31:24 -0400
committerTrond Myklebust <trond.myklebust@hammerspace.com>2021-04-14 09:36:29 -0400
commitcc7f2dae63bca9579d65a46f3bf2c48a15961e19 (patch)
tree5746e222613eb13178f7423870f551eeb33d38ac /fs/nfs/nfs4proc.c
parentNFSv4: link must update the inode nlink. (diff)
downloadlinux-dev-cc7f2dae63bca9579d65a46f3bf2c48a15961e19.tar.xz
linux-dev-cc7f2dae63bca9579d65a46f3bf2c48a15961e19.zip
NFS: Don't store NFS_INO_REVAL_FORCED
NFS_INO_REVAL_FORCED is intended to tell us that the cache needs revalidation despite the fact that we hold a delegation. We shouldn't need to store it anymore, though. Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r--fs/nfs/nfs4proc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index 2215f20e0e78..bcbb057d5529 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -5477,10 +5477,7 @@ static void nfs4_bitmask_set(__u32 bitmask[NFS4_BITMASK_SZ], const __u32 *src,
if (cache_validity & NFS_INO_INVALID_BLOCKS)
bitmask[1] |= FATTR4_WORD1_SPACE_USED;
- if (nfs4_have_delegation(inode, FMODE_READ) &&
- !(cache_validity & NFS_INO_REVAL_FORCED))
- bitmask[0] &= ~FATTR4_WORD0_SIZE;
- else if (cache_validity & NFS_INO_INVALID_SIZE)
+ if (cache_validity & NFS_INO_INVALID_SIZE)
bitmask[0] |= FATTR4_WORD0_SIZE;
for (i = 0; i < NFS4_BITMASK_SZ; i++)