Home | History | Annotate | Download | only in genfs

Lines Matching defs:acl_mask

757 	struct acl_entry *acl_other, *acl_mask;
769 * doing the first scan, also cache the location of the ACL_MASK and
772 acl_mask = acl_other = NULL;
789 case ACL_MASK:
790 acl_mask = ae;
818 * masked by an ACL_MASK entry, if any. As such, first identify the
819 * ACL_MASK field, then iterate through identifying potential user
820 * matches, then group matches. If there is no ACL_MASK, assume that
823 if (acl_mask != NULL) {
825 if (acl_mask->ae_perm & ACL_EXECUTE)
827 if (acl_mask->ae_perm & ACL_READ)
829 if (acl_mask->ae_perm & ACL_WRITE)
968 * Fall back on ACL_OTHER. ACL_MASK is not applied to ACL_OTHER.