Home
last modified time | relevance | path

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

/xnu-10002.41.9/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()
2671 if (!ISSET(bp_head->b_lflags, BL_BUSY)) { in buf_brelse_shadow()
2725 if (bp->b_whichq != -1 || !(bp->b_lflags & BL_BUSY)) { in buf_brelse()
2973 CLR(bp->b_lflags, (BL_BUSY | BL_WANTED)); in buf_brelse()
3099 if (ISSET(bp->b_lflags, BL_BUSY)) { in buf_getblk()
3146 SET(bp->b_lflags, BL_BUSY); in buf_getblk()
3844 if (ISSET(bp->b_flags, B_LOCKED) || ISSET(bp->b_lflags, BL_BUSY)) { in getnewbuf()
3909 SET(bp->b_lflags, BL_BUSY); in bcleanbuf()
3940 CLR(bp->b_lflags, BL_BUSY); in bcleanbuf()
[all …]
/xnu-10002.41.9/bsd/kern/
H A Dkern_physio.c137 assert(bp->b_lflags & BL_BUSY); in physio()
/xnu-10002.41.9/bsd/sys/
H A Dbuf_internal.h175 #define BL_BUSY 0x00000001 /* I/O in progress. */ macro