HomeSort by: relevance | last modified time | path
    Searched defs:lf_next (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/kern/
vfs_lockf.c 62 * lf_next is used for two purposes, depending on whether the lock is
65 * For pending locks, if lock->lf_next is non-NULL, then lock->lf_block
66 * must be queued on the lf_blkhd TAILQ of lock->lf_next.
79 struct lockf *lf_next; /* Next lock on this vnode, or blocking lock */ member in struct:lockf
160 for (lf = *lock->lf_head; lf; lf = lf->lf_next) {
251 *prev = &lf->lf_next;
252 *overlap = lf = lf->lf_next;
279 *prev = &lf->lf_next;
280 *overlap = lf = lf->lf_next;
355 lock2->lf_next = lock1
    [all...]

Completed in 11 milliseconds