Searched refs:contig_bytes (Results 1 – 1 of 1) sorted by relevance
| /xnu-10063.101.15/bsd/vfs/ ! |
| H A D | vfs_bio.c | 1304 buf_strategy_fragmented(vnode_t devvp, buf_t bp, off_t f_offset, size_t contig_bytes) in buf_strategy_fragmented() argument 1337 io_contig_bytes = contig_bytes; in buf_strategy_fragmented() 1455 size_t contig_bytes; in buf_strategy() local 1467 …if ((error = VNOP_BLOCKMAP(vp, f_offset, bp->b_bcount, &bp->b_blkno, &contig_bytes, NULL, bmap_fla… in buf_strategy() 1480 if ((bp->b_blkno == -1) || (contig_bytes == 0)) { in buf_strategy() 1484 } else if (contig_bytes < (size_t)bp->b_bcount) { in buf_strategy() 1485 return buf_strategy_fragmented(devvp, bp, f_offset, contig_bytes); in buf_strategy() 3344 size_t contig_bytes; in buf_getblk() local 3418 …if (VNOP_BLOCKMAP(vp, f_offset, bp->b_bcount, &bp->b_blkno, &contig_bytes, NULL, bmap_flags, NULL)… in buf_getblk() 3427 if ((uint32_t)contig_bytes < bp->b_bcount) { in buf_getblk()
|