diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2020-10-20 15:48:22 -0400 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2021-01-25 09:36:25 -0500 |
commit | 9cde9360d18d8b352b737d10f90f2aecccf93dbe (patch) | |
tree | 1bc1dc41e08b7edbec435fe8d1565a25a64f0da0 /include/uapi/linux/nfs3.h | |
parent | efaa1e7c2c7475f0a9bbeb904d9aba09b73dd52a (diff) | |
download | linux-next-9cde9360d18d8b352b737d10f90f2aecccf93dbe.tar.gz |
NFSD: Update the SETATTR3args decoder to use struct xdr_stream
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'include/uapi/linux/nfs3.h')
-rw-r--r-- | include/uapi/linux/nfs3.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/uapi/linux/nfs3.h b/include/uapi/linux/nfs3.h index 37e4b34e6b43..c22ab77713bd 100644 --- a/include/uapi/linux/nfs3.h +++ b/include/uapi/linux/nfs3.h @@ -63,6 +63,12 @@ enum nfs3_ftype { NF3BAD = 8 }; +enum nfs3_time_how { + DONT_CHANGE = 0, + SET_TO_SERVER_TIME = 1, + SET_TO_CLIENT_TIME = 2, +}; + struct nfs3_fh { unsigned short size; unsigned char data[NFS3_FHSIZE]; |