Home
last modified time | relevance | path

Searched refs:B_INVAL (Results 1 – 2 of 2) sorted by relevance

/xnu-8020.140.41/bsd/vfs/
H A Dvfs_bio.c332 SET(bp->b_flags, B_INVAL); in buf_markinvalid()
667 CLR(bp->b_flags, (B_READ | B_WRITE | B_ERROR | B_DONE | B_INVAL | B_ASYNC | B_NOCACHE | B_FUA)); in buf_reset()
1754 SET(bp->b_flags, B_INVAL); in buf_invalidateblks()
1829 SET(bp->b_flags, B_INVAL); in buf_invalidateblks()
2145 bp->b_flags = B_INVAL; in bufhdrinit()
2744 if (ISSET(bp->b_flags, B_META) && ISSET(bp->b_flags, B_INVAL)) { in buf_brelse()
2769 if (!ISSET(bp->b_flags, B_INVAL)) { in buf_brelse()
2796 if (bp->b_flags & (B_ERROR | B_INVAL)) { in buf_brelse()
2797 if (bp->b_flags & (B_READ | B_INVAL)) { in buf_brelse()
2832 SET(bp->b_flags, B_INVAL); in buf_brelse()
[all …]
/xnu-8020.140.41/bsd/sys/
H A Dbuf_internal.h232 #define B_INVAL 0x00040000 /* Does not contain valid info. */ macro