Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/vfs/
H A Dvfs_bio.c1285 buf_strategy_fragmented(vnode_t devvp, buf_t bp, off_t f_offset, size_t contig_bytes) in buf_strategy_fragmented() argument
1318 io_contig_bytes = contig_bytes; in buf_strategy_fragmented()
1436 size_t contig_bytes; in buf_strategy() local
1448 …if ((error = VNOP_BLOCKMAP(vp, f_offset, bp->b_bcount, &bp->b_blkno, &contig_bytes, NULL, bmap_fla… in buf_strategy()
1461 if ((bp->b_blkno == -1) || (contig_bytes == 0)) { in buf_strategy()
1465 } else if (contig_bytes < (size_t)bp->b_bcount) { in buf_strategy()
1466 return buf_strategy_fragmented(devvp, bp, f_offset, contig_bytes); in buf_strategy()
3323 size_t contig_bytes; in buf_getblk() local
3397 …if (VNOP_BLOCKMAP(vp, f_offset, bp->b_bcount, &bp->b_blkno, &contig_bytes, NULL, bmap_flags, NULL)… in buf_getblk()
3406 if ((uint32_t)contig_bytes < bp->b_bcount) { in buf_getblk()