diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2005-06-22 21:16:22 +0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-06-23 00:07:12 +0400 |
commit | 029d105e66e5a90850d5a09dad76815d0bcfcaa3 (patch) | |
tree | 936855da358d98a645e7984b7c957b8f73d4bd4f /include/linux/nfs_xdr.h | |
parent | 96928206961be05f22c3839f0097b610cc485b5d (diff) | |
download | linux-029d105e66e5a90850d5a09dad76815d0bcfcaa3.tar.xz |
[PATCH] NFSv4: Client-side xdr for reading NFSv4 acls
Client-side support for NFSv4 acls: xdr encoding and decoding routines for
reading acls
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/nfs_xdr.h')
-rw-r--r-- | include/linux/nfs_xdr.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index cf38db59f347..9f5e1d407c7b 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -326,6 +326,13 @@ struct nfs_setattrargs { const u32 * bitmask; }; +struct nfs_getaclargs { + struct nfs_fh * fh; + size_t acl_len; + unsigned int acl_pgbase; + struct page ** acl_pages; +}; + struct nfs_setattrres { struct nfs_fattr * fattr; const struct nfs_server * server; |