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 */
401 the data btree or some ea or the
402 main ea bootage pointer ea_secno
429 /* fnode: root of allocation b+ tree, and EA's */
432 entry and pointing to the file's sectors or directory's root dnode. EA's
449 __le32 ea_size_l; /* length of disk-resident ea's */
450 __le32 ea_secno; /* first sector of disk-resident ea's*/
451 __le16 ea_size_s; /* length of fnode-resident ea's */
463 __le32 n_needea; /* number of EA's with NEEDEA set */
466 to first fnode-resident ea */
471 u8 ea[316]; /* zero or more EA's, packed together member
510 A file's EA info is stored as a list of (name,value) pairs. It is
515 The value of a single EA is stored along with the name, or (if large)
519 Flags in the EA tell whether the value is immediate, in a single sector
520 run, or in multiple runs. Flags in the fnode tell whether the EA list
530 /* bit 7 set -> required ea */
547 static inline bool ea_indirect(struct extended_attribute *ea) in ea_indirect() argument
549 return ea->flags & EA_indirect; in ea_indirect()
552 static inline bool ea_in_anode(struct extended_attribute *ea) in ea_in_anode() argument
554 return ea->flags & EA_anode; in ea_in_anode()