Searched refs:b_hash (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dbuf_internal.h99 LIST_ENTRY(buf) b_hash; /* Hash chain. */ member in struct:buf
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_bio.c215 if ((bp)->b_hash.le_prev != (struct buf **)0xdeadbeef) \
216 panic("%p: b_hash.le_prev is not deadbeef", (bp));
219 (bp)->b_hash.le_next = (struct buf *)0; \
220 (bp)->b_hash.le_prev = (struct buf **)0xdeadbeef;
249 if ((bp->b_hash.le_next = (head)->lh_first) != NULL)
250 (head)->lh_first->b_hash.le_prev = &(bp)->b_hash.le_next;
252 bp->b_hash.le_prev = &(head)->lh_first;
253 if (bp->b_hash.le_prev == (struct buf **)0xdeadbeef)
268 for(; nbp != NULL; nbp = nbp->b_hash
[all...]

Completed in 73 milliseconds