Home
last modified time | relevance | path

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

/xnu-11417.121.6/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()
1781 SET(bp->b_flags, B_INVAL); in buf_invalidateblks()
1856 SET(bp->b_flags, B_INVAL); in buf_invalidateblks()
2172 bp->b_flags = B_INVAL; in bufhdrinit()
2771 if (ISSET(bp->b_flags, B_META) && ISSET(bp->b_flags, B_INVAL)) { in buf_brelse()
2796 if (!ISSET(bp->b_flags, B_INVAL)) { in buf_brelse()
2823 if (bp->b_flags & (B_ERROR | B_INVAL)) { in buf_brelse()
2824 if (bp->b_flags & (B_READ | B_INVAL)) { in buf_brelse()
2859 SET(bp->b_flags, B_INVAL); in buf_brelse()
[all …]
/xnu-11417.121.6/bsd/sys/
H A Dbuf_internal.h234 #define B_INVAL 0x00040000 /* Does not contain valid info. */ macro