Searched refs:un_flags (Results 1 - 3 of 3) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/union/
H A Dunion_subr.c232 if (un->un_flags & UN_CACHED) {
233 un->un_flags &= ~UN_CACHED;
287 un->un_flags |= UN_CACHED;
529 if (un->un_flags & UN_LOCKED) {
530 un->un_flags |= UN_WANT;
531 msleep((caddr_t) &un->un_flags, union_mtxp, PINOD, "union node locked", 0);
534 un->un_flags |= UN_LOCKED;
541 un->un_flags &= ~UN_LOCKED;
542 if ((un->un_flags & UN_WANT) == UN_WANT) {
543 un->un_flags
[all...]
H A Dunion_vnops.c580 un->un_flags |= UN_LOCKED;
583 un->un_flags &= ~UN_LOCKED;
584 if ((un->un_flags & UN_WANT) == UN_WANT) {
585 un->un_flags &= ~UN_WANT;
586 wakeup(&un->un_flags);
1046 un->un_flags |= UN_DELETED;
1047 if (un->un_flags & UN_CACHED) {
1048 un->un_flags &= ~UN_CACHED;
1102 un->un_flags |= UN_LOCKED;
1104 un->un_flags
[all...]
H A Dunion.h154 unsigned int un_flags; member in struct:union_node
171 #define UNNODE_FAULTIN(x) ((x->un_flags & UN_FAULTFS)== UN_FAULTFS)

Completed in 43 milliseconds