diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2020-12-01 07:14:27 +0300 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2020-12-09 17:39:38 +0300 |
commit | 716a8bc7f706eeef80ab42c99d9f210eda845c81 (patch) | |
tree | 4a4d44ee502a13cfecf8d64f582adfae278dcbf1 /include/linux/exportfs.h | |
parent | 01cbf3853959feec40ec9b9a399e12a021cd4d81 (diff) | |
download | linux-716a8bc7f706eeef80ab42c99d9f210eda845c81.tar.xz |
nfsd: Record NFSv4 pre/post-op attributes as non-atomic
For the case of NFSv4, specify to the client that the pre/post-op
attributes were not recorded atomically with the main operation.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'include/linux/exportfs.h')
-rw-r--r-- | include/linux/exportfs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/exportfs.h b/include/linux/exportfs.h index d93e8a6737bb..9f4d4bcbf251 100644 --- a/include/linux/exportfs.h +++ b/include/linux/exportfs.h @@ -217,6 +217,9 @@ struct export_operations { #define EXPORT_OP_NOSUBTREECHK (0x2) /* no subtree checking */ #define EXPORT_OP_CLOSE_BEFORE_UNLINK (0x4) /* close files before unlink */ #define EXPORT_OP_REMOTE_FS (0x8) /* Filesystem is remote */ +#define EXPORT_OP_NOATOMIC_ATTR (0x10) /* Filesystem cannot supply + atomic attribute updates + */ unsigned long flags; }; |