Lines Matching refs:io_contig_bytes
1310 size_t io_contig_bytes; in buf_strategy_fragmented() local
1337 io_contig_bytes = contig_bytes; in buf_strategy_fragmented()
1350 bzero((caddr_t)io_bp->b_datap, (int)io_contig_bytes); in buf_strategy_fragmented()
1352 io_bp->b_bcount = (uint32_t)io_contig_bytes; in buf_strategy_fragmented()
1353 io_bp->b_bufsize = (uint32_t)io_contig_bytes; in buf_strategy_fragmented()
1354 io_bp->b_resid = (uint32_t)io_contig_bytes; in buf_strategy_fragmented()
1374 io_resid -= (io_contig_bytes - io_bp->b_resid); in buf_strategy_fragmented()
1378 if ((io_resid -= io_contig_bytes) == 0) { in buf_strategy_fragmented()
1381 f_offset += io_contig_bytes; in buf_strategy_fragmented()
1382 io_bp->b_datap += io_contig_bytes; in buf_strategy_fragmented()
1387 …if ((error = VNOP_BLOCKMAP(vp, f_offset, io_resid, &io_blkno, &io_contig_bytes, NULL, bmap_flags, … in buf_strategy_fragmented()