FreeBSD ZFS
The Zettabyte File System
|
A zfs_acl_t structure is composed of a list of zfs_acl_node_t's. More...
#include <zfs_acl.h>
Data Fields | |
uint64_t | z_acl_count |
Number of ACEs. | |
size_t | z_acl_bytes |
Number of bytes in ACL. | |
uint_t | z_version |
version of ACL | |
void * | z_next_ace |
pointer to next ACE | |
uint64_t | z_hints |
ACL hints (ZFS_INHERIT_ACE ...) | |
zfs_acl_node_t * | z_curr_node |
current node iterator is handling | |
list_t | z_acl |
chunks of ACE data | |
acl_ops_t | z_ops |
ACL operations. |
A zfs_acl_t structure is composed of a list of zfs_acl_node_t's.
Each node will have one or more ACEs associated with it. You will only have multiple nodes during a chmod operation. Normally only one node is required.
list_t zfs_acl::z_acl |
size_t zfs_acl::z_acl_bytes |
uint64_t zfs_acl::z_acl_count |
uint64_t zfs_acl::z_hints |
void* zfs_acl::z_next_ace |
uint_t zfs_acl::z_version |