Home
last modified time | relevance | path

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

/xnu-8020.140.41/bsd/vfs/
H A Dvfs_bio.c772 assert(!ISSET(bp->b_flags, B_FILTER) && ISSET(bp->b_lflags, BL_BUSY)); in buf_setcallback()
1025 assert(ISSET(bp->b_lflags, BL_BUSY)); in buf_setfilter()
2650 if (!ISSET(bp_head->b_lflags, BL_BUSY)) { in buf_brelse_shadow()
2704 if (bp->b_whichq != -1 || !(bp->b_lflags & BL_BUSY)) { in buf_brelse()
2952 CLR(bp->b_lflags, (BL_BUSY | BL_WANTED)); in buf_brelse()
3078 if (ISSET(bp->b_lflags, BL_BUSY)) { in buf_getblk()
3125 SET(bp->b_lflags, BL_BUSY); in buf_getblk()
3823 if (ISSET(bp->b_flags, B_LOCKED) || ISSET(bp->b_lflags, BL_BUSY)) { in getnewbuf()
3888 SET(bp->b_lflags, BL_BUSY); in bcleanbuf()
3919 CLR(bp->b_lflags, BL_BUSY); in bcleanbuf()
[all …]
/xnu-8020.140.41/bsd/kern/
H A Dkern_physio.c137 assert(bp->b_lflags & BL_BUSY); in physio()
/xnu-8020.140.41/bsd/sys/
H A Dbuf_internal.h174 #define BL_BUSY 0x00000001 /* I/O in progress. */ macro