NFSD: handle GETATTR conflict with write delegation
authorDai Ngo <dai.ngo@oracle.com>
Wed, 13 Sep 2023 23:38:21 +0000 (16:38 -0700)
committerChuck Lever <chuck.lever@oracle.com>
Mon, 16 Oct 2023 16:44:09 +0000 (12:44 -0400)
commit6c41d9a9bd0298002805758216a9c44e38a8500d
tree8ab05bbe4e3c97f3a35bced2951e32715f63424f
parent738401a9bd1ac34ccd5723d69640a4adbb1a4bc0
NFSD: handle GETATTR conflict with write delegation

If the GETATTR request on a file that has write delegation in effect
and the request attributes include the change info and size attribute
then the request is handled as below:

Server sends CB_GETATTR to client to get the latest change info and file
size. If these values are the same as the server's cached values then
the GETATTR proceeds as normal.

If either the change info or file size is different from the server's
cached values, or the file was already marked as modified, then:

    . update time_modify and time_metadata into file's metadata
      with current time

    . encode GETATTR as normal except the file size is encoded with
      the value returned from CB_GETATTR

    . mark the file as modified

If the CB_GETATTR fails for any reasons, the delegation is recalled
and NFS4ERR_DELAY is returned for the GETATTR.

Signed-off-by: Dai Ngo <dai.ngo@oracle.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/nfs4state.c
fs/nfsd/nfs4xdr.c
fs/nfsd/state.h