Lines Matching defs:acl_e
735 struct posix_acl_entry *acl_e;
753 acl_e = acl->a_entries;
755 for (end = entry + count; entry != end; acl_e++, entry++) {
756 acl_e->e_tag = le16_to_cpu(entry->e_tag);
757 acl_e->e_perm = le16_to_cpu(entry->e_perm);
759 switch(acl_e->e_tag) {
767 acl_e->e_uid =
770 if (!uid_valid(acl_e->e_uid))
774 acl_e->e_gid =
777 if (!gid_valid(acl_e->e_gid))
814 const struct posix_acl_entry *acl_e = &acl->a_entries[n];
815 ext_entry->e_tag = cpu_to_le16(acl_e->e_tag);
816 ext_entry->e_perm = cpu_to_le16(acl_e->e_perm);
817 switch(acl_e->e_tag) {
820 cpu_to_le32(from_kuid(user_ns, acl_e->e_uid));
824 cpu_to_le32(from_kgid(user_ns, acl_e->e_gid));