search for: who_flag

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

Did you mean: who_flags
2010 Feb 01
1
[PATCH 03/23] vfs: rich ACL in-memory representation and manipulation
...L(richace_everyone_who); > > <snip> > > > +/* > > + * richace_is_same_who - do both acl entries refer to the same identifier? > > + */ > > +int > > +richace_is_same_who(const struct richace *a, const struct richace *b) > > +{ > > +#define WHO_FLAGS (ACE4_SPECIAL_WHO | ACE4_IDENTIFIER_GROUP) > > + if ((a->e_flags & WHO_FLAGS) != (b->e_flags & WHO_FLAGS)) > > + return 0; > > + if (a->e_flags & ACE4_SPECIAL_WHO) > > + return a->u.e_who == b->u.e_who; > > + else > > + return a-&gt...