diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2016-12-02 22:53:30 -0500 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2016-12-09 23:47:10 -0500 |
commit | dff25ddb48086afcb434770caa3d6849a4489b85 (patch) | |
tree | 5072c5bf9d907cabcfa354e7c100d0302b10cb36 /include/linux/nfs_xdr.h | |
parent | d9152114f7c9abb096275b72db8527c004d57bf9 (diff) | |
download | op-kernel-dev-dff25ddb48086afcb434770caa3d6849a4489b85.zip op-kernel-dev-dff25ddb48086afcb434770caa3d6849a4489b85.tar.gz |
nfs: add support for the umask attribute
Clients can set the umask attribute when creating files to cause the
server to apply it always except when inheriting permissions from the
parent directory. That way, the new files will end up with the same
permissions as files created locally.
See https://tools.ietf.org/html/draft-ietf-nfsv4-umask-02 for more details.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'include/linux/nfs_xdr.h')
-rw-r--r-- | include/linux/nfs_xdr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 617cfaa..348f7c1 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -433,6 +433,7 @@ struct nfs_openargs { enum open_claim_type4 claim; enum createmode4 createmode; const struct nfs4_label *label; + umode_t umask; }; struct nfs_openres { @@ -958,6 +959,7 @@ struct nfs4_create_arg { const struct nfs_fh * dir_fh; const u32 * bitmask; const struct nfs4_label *label; + umode_t umask; }; struct nfs4_create_res { |