Home
last modified time | relevance | path

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

/xnu-8792.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()
2657 if (!ISSET(bp_head->b_lflags, BL_BUSY)) { in buf_brelse_shadow()
2711 if (bp->b_whichq != -1 || !(bp->b_lflags & BL_BUSY)) { in buf_brelse()
2959 CLR(bp->b_lflags, (BL_BUSY | BL_WANTED)); in buf_brelse()
3085 if (ISSET(bp->b_lflags, BL_BUSY)) { in buf_getblk()
3132 SET(bp->b_lflags, BL_BUSY); in buf_getblk()
3830 if (ISSET(bp->b_flags, B_LOCKED) || ISSET(bp->b_lflags, BL_BUSY)) { in getnewbuf()
3895 SET(bp->b_lflags, BL_BUSY); in bcleanbuf()
3926 CLR(bp->b_lflags, BL_BUSY); in bcleanbuf()
[all …]
/xnu-8792.41.9/bsd/kern/
H A Dkern_physio.c137 assert(bp->b_lflags & BL_BUSY); in physio()
/xnu-8792.41.9/bsd/sys/
H A Dbuf_internal.h175 #define BL_BUSY 0x00000001 /* I/O in progress. */ macro