Lines Matching refs:extended_attribute
135 static inline struct extended_attribute *fnode_ea(struct fnode *fnode)
137 return (struct extended_attribute *)((char *)fnode + le16_to_cpu(fnode->ea_offs) + le16_to_cpu(fnode->acl_size_s));
140 static inline struct extended_attribute *fnode_end_ea(struct fnode *fnode)
142 return (struct extended_attribute *)((char *)fnode + le16_to_cpu(fnode->ea_offs) + le16_to_cpu(fnode->acl_size_s) + le16_to_cpu(fnode->ea_size_s));
145 static unsigned ea_valuelen(struct extended_attribute *ea)
150 static inline struct extended_attribute *next_ea(struct extended_attribute *ea)
152 return (struct extended_attribute *)((char *)ea + 5 + ea->namelen + ea_valuelen(ea));
155 static inline secno ea_sec(struct extended_attribute *ea)
160 static inline secno ea_len(struct extended_attribute *ea)
165 static inline char *ea_data(struct extended_attribute *ea)