Home
last modified time | relevance | path

Searched refs:BL_BUSY (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.1.9/bsd/vfs/
H A Dvfs_bio.c940 assert(!ISSET(bp->b_flags, B_FILTER) && ISSET(bp->b_lflags, BL_BUSY)); in buf_setcallback()
1193 assert(ISSET(bp->b_lflags, BL_BUSY)); in buf_setfilter()
2840 if (!ISSET(bp_head->b_lflags, BL_BUSY)) { in buf_brelse_shadow()
2894 if (bp->b_whichq != -1 || !(bp->b_lflags & BL_BUSY)) { in buf_brelse()
3144 CLR(bp->b_lflags, (BL_BUSY | BL_WANTED)); in buf_brelse()
3270 if (ISSET(bp->b_lflags, BL_BUSY)) { in buf_getblk()
3317 SET(bp->b_lflags, BL_BUSY); in buf_getblk()
4015 if (ISSET(bp->b_flags, B_LOCKED) || ISSET(bp->b_lflags, BL_BUSY)) { in getnewbuf()
4080 SET(bp->b_lflags, BL_BUSY); in bcleanbuf()
4111 CLR(bp->b_lflags, BL_BUSY); in bcleanbuf()
[all …]
/xnu-12377.1.9/bsd/kern/
H A Dkern_physio.c137 assert(bp->b_lflags & BL_BUSY); in physio()
/xnu-12377.1.9/bsd/sys/
H A Dbuf_internal.h180 #define BL_BUSY 0x00000001 /* I/O in progress. */ macro