search for: e_mask

Displaying 1 result from an estimated 1 matches for "e_mask".

Did you mean: ev_mask
2010 Feb 01
1
[PATCH 03/23] vfs: rich ACL in-memory representation and manipulation
...; + > > + richacl_for_each_entry_reverse(ace, acl) { > > + if (richace_is_inherit_only(ace)) > > + continue; > > + if (richace_is_same_who(ace, who) || > > + richace_is_everyone(ace)) { > > + if (richace_is_allow(ace)) > > + allowed |= ace->e_mask; > > + else if (richace_is_deny(ace)) > > + allowed &= ~ace->e_mask; > > + } > > + } > > + return allowed; > > +} > > <snip> > > > +struct richace { > > + unsigned short e_type; > > + unsigned short e_flags; > &g...