git: 6bde10b638d1 - stable/13 - nfsproto.h: Define the new mode_umask attribute
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 31 Aug 2024 02:03:38 UTC
The branch stable/13 has been updated by rmacklem:
URL: https://cgit.FreeBSD.org/src/commit/?id=6bde10b638d103f18b2ba08ea743f7999b0a9abe
commit 6bde10b638d103f18b2ba08ea743f7999b0a9abe
Author: Rick Macklem <rmacklem@FreeBSD.org>
AuthorDate: 2024-08-17 00:40:52 +0000
Commit: Rick Macklem <rmacklem@FreeBSD.org>
CommitDate: 2024-08-31 02:02:57 +0000
nfsproto.h: Define the new mode_umask attribute
RFC8275 defines a new attribute as an extension to NFSv4.2
called MODE_UMASK. This patch adds the attribute number
to nfsproto.h.
Future patches will add optional support for the attribute.
This patch does not cause any semantics change.
(cherry picked from commit 10d5b43424da7fadfbdcc41bbffe40d130af1e1d)
---
sys/fs/nfs/nfsproto.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/fs/nfs/nfsproto.h b/sys/fs/nfs/nfsproto.h
index cf162dbf24e8..9c0569d97215 100644
--- a/sys/fs/nfs/nfsproto.h
+++ b/sys/fs/nfs/nfsproto.h
@@ -1002,7 +1002,7 @@ struct nfsv3_sattr {
#define NFSATTRBIT_SPACEFREED 78
#define NFSATTRBIT_CHANGEATTRTYPE 79
#define NFSATTRBIT_SECLABEL 80
-/* Not sure what attribute bit #81 is? */
+#define NFSATTRBIT_MODEUMASK 81
#define NFSATTRBIT_XATTRSUPPORT 82
#define NFSATTRBM_SUPPORTEDATTRS 0x00000001
@@ -1086,7 +1086,7 @@ struct nfsv3_sattr {
#define NFSATTRBM_SPACEFREED 0x00004000
#define NFSATTRBM_CHANGEATTRTYPE 0x00008000
#define NFSATTRBM_SECLABEL 0x00010000
-/* Not sure what attribute bit#81/0x00020000 is? */
+#define NFSATTRBM_MODEUMASK 0x00020000
#define NFSATTRBM_XATTRSUPPORT 0x00040000
#define NFSATTRBIT_MAX 83