Home
last modified time | relevance | path

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

/xnu-8792.41.9/bsd/vfs/
H A Dvfs_bio.c1290 buf_strategy_fragmented(vnode_t devvp, buf_t bp, off_t f_offset, size_t contig_bytes) in buf_strategy_fragmented() argument
1323 io_contig_bytes = contig_bytes; in buf_strategy_fragmented()
1441 size_t contig_bytes; in buf_strategy() local
1453 …if ((error = VNOP_BLOCKMAP(vp, f_offset, bp->b_bcount, &bp->b_blkno, &contig_bytes, NULL, bmap_fla… in buf_strategy()
1466 if ((bp->b_blkno == -1) || (contig_bytes == 0)) { in buf_strategy()
1470 } else if (contig_bytes < (size_t)bp->b_bcount) { in buf_strategy()
1471 return buf_strategy_fragmented(devvp, bp, f_offset, contig_bytes); in buf_strategy()
3330 size_t contig_bytes; in buf_getblk() local
3404 …if (VNOP_BLOCKMAP(vp, f_offset, bp->b_bcount, &bp->b_blkno, &contig_bytes, NULL, bmap_flags, NULL)… in buf_getblk()
3413 if ((uint32_t)contig_bytes < bp->b_bcount) { in buf_getblk()