diff options
author | 2024-06-16 21:21:27 -0400 | |
---|---|---|
committer | 2024-07-08 13:47:25 -0400 | |
commit | dcb3c20f741993efbd95be78aab93fac29516323 (patch) | |
tree | 68b39f5bc2a10ec8fb6909fcd180ec7ee392cb57 /include/linux/nfs_fs_sb.h | |
parent | NFSv4: Add recovery of attribute delegations (diff) | |
download | wireguard-linux-dcb3c20f741993efbd95be78aab93fac29516323.tar.xz wireguard-linux-dcb3c20f741993efbd95be78aab93fac29516323.zip |
NFSv4: Add a capability for delegated attributes
Cache whether or not the server may have support for delegated
attributes in a capability flag.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Lance Shelton <lance.shelton@hammerspace.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to '')
-rw-r--r-- | include/linux/nfs_fs_sb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index 92de074e63b9..5a76a87cd924 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h @@ -278,6 +278,7 @@ struct nfs_server { #define NFS_CAP_LGOPEN (1U << 5) #define NFS_CAP_CASE_INSENSITIVE (1U << 6) #define NFS_CAP_CASE_PRESERVING (1U << 7) +#define NFS_CAP_DELEGTIME (1U << 13) #define NFS_CAP_POSIX_LOCK (1U << 14) #define NFS_CAP_UIDGID_NOMAP (1U << 15) #define NFS_CAP_STATEID_NFSV41 (1U << 16) |