Lines Matching full:ea
311 u8 has_ea: 1; /* entry has EA */
314 u8 has_needea: 1; /* ?? some EA has NEEDEA set
318 u8 has_needea: 1; /* ?? some EA has NEEDEA set
323 u8 has_ea: 1; /* entry has EA */
355 __le32 ea_size; /* total EA length, bytes */
400 the data btree or some ea or the
401 main ea bootage pointer ea_secno
428 /* fnode: root of allocation b+ tree, and EA's */
431 entry and pointing to the file's sectors or directory's root dnode. EA's
448 __le32 ea_size_l; /* length of disk-resident ea's */
449 __le32 ea_secno; /* first sector of disk-resident ea's*/
450 __le16 ea_size_s; /* length of fnode-resident ea's */
462 __le32 n_needea; /* number of EA's with NEEDEA set */
465 to first fnode-resident ea */
470 u8 ea[316]; /* zero or more EA's, packed together member
509 A file's EA info is stored as a list of (name,value) pairs. It is
514 The value of a single EA is stored along with the name, or (if large)
518 Flags in the EA tell whether the value is immediate, in a single sector
519 run, or in multiple runs. Flags in the fnode tell whether the EA list
529 /* bit 7 set -> required ea */
546 static inline bool ea_indirect(struct extended_attribute *ea) in ea_indirect() argument
548 return ea->flags & EA_indirect; in ea_indirect()
551 static inline bool ea_in_anode(struct extended_attribute *ea) in ea_in_anode() argument
553 return ea->flags & EA_anode; in ea_in_anode()