diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2020-11-17 17:37:35 +0100 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2021-01-25 15:36:27 +0100 |
commit | 427eab3ba22891845265f9a3846de6ac152ec836 (patch) | |
tree | f55302bc5ce63c44ed9558aaadc3d43414b2c570 /fs/nfsd/xdr3.h | |
parent | NFSD: Add an xdr_stream-based decoder for NFSv2/3 ACLs (diff) | |
download | linux-427eab3ba22891845265f9a3846de6ac152ec836.tar.xz linux-427eab3ba22891845265f9a3846de6ac152ec836.zip |
NFSD: Update the NFSv2 SETACL argument decoder to use struct xdr_stream
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfsd/xdr3.h')
-rw-r--r-- | fs/nfsd/xdr3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/xdr3.h b/fs/nfsd/xdr3.h index 43db4206cd25..5afb3ce4f062 100644 --- a/fs/nfsd/xdr3.h +++ b/fs/nfsd/xdr3.h @@ -108,7 +108,7 @@ struct nfsd3_getaclargs { struct posix_acl; struct nfsd3_setaclargs { struct svc_fh fh; - int mask; + __u32 mask; struct posix_acl *acl_access; struct posix_acl *acl_default; }; |