Lines Matching refs:entry
22 posix_acl_xattr_entry *entry = (posix_acl_xattr_entry *)(header+1), *end; in posix_acl_fix_xattr_userns() local
40 for (end = entry + count; entry != end; entry++) { in posix_acl_fix_xattr_userns()
41 switch(le16_to_cpu(entry->e_tag)) { in posix_acl_fix_xattr_userns()
43 uid = make_kuid(from, le32_to_cpu(entry->e_id)); in posix_acl_fix_xattr_userns()
44 entry->e_id = cpu_to_le32(from_kuid(to, uid)); in posix_acl_fix_xattr_userns()
47 gid = make_kgid(from, le32_to_cpu(entry->e_id)); in posix_acl_fix_xattr_userns()
48 entry->e_id = cpu_to_le32(from_kgid(to, gid)); in posix_acl_fix_xattr_userns()
80 posix_acl_xattr_entry *entry = (posix_acl_xattr_entry *)(header+1), *end; in posix_acl_from_xattr() local
103 for (end = entry + count; entry != end; acl_e++, entry++) { in posix_acl_from_xattr()
104 acl_e->e_tag = le16_to_cpu(entry->e_tag); in posix_acl_from_xattr()
105 acl_e->e_perm = le16_to_cpu(entry->e_perm); in posix_acl_from_xattr()
117 le32_to_cpu(entry->e_id)); in posix_acl_from_xattr()
124 le32_to_cpu(entry->e_id)); in posix_acl_from_xattr()