Home
last modified time | relevance | path

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

/xnu-11215.61.5/bsd/vfs/
H A Dvfs_bio.c777 assert(!ISSET(bp->b_flags, B_FILTER) && ISSET(bp->b_lflags, BL_BUSY)); in buf_setcallback()
1030 assert(ISSET(bp->b_lflags, BL_BUSY)); in buf_setfilter()
2677 if (!ISSET(bp_head->b_lflags, BL_BUSY)) { in buf_brelse_shadow()
2731 if (bp->b_whichq != -1 || !(bp->b_lflags & BL_BUSY)) { in buf_brelse()
2979 CLR(bp->b_lflags, (BL_BUSY | BL_WANTED)); in buf_brelse()
3105 if (ISSET(bp->b_lflags, BL_BUSY)) { in buf_getblk()
3152 SET(bp->b_lflags, BL_BUSY); in buf_getblk()
3850 if (ISSET(bp->b_flags, B_LOCKED) || ISSET(bp->b_lflags, BL_BUSY)) { in getnewbuf()
3915 SET(bp->b_lflags, BL_BUSY); in bcleanbuf()
3946 CLR(bp->b_lflags, BL_BUSY); in bcleanbuf()
[all …]
/xnu-11215.61.5/bsd/kern/
H A Dkern_physio.c137 assert(bp->b_lflags & BL_BUSY); in physio()
/xnu-11215.61.5/bsd/sys/
H A Dbuf_internal.h176 #define BL_BUSY 0x00000001 /* I/O in progress. */ macro