Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/perf/
H A Dperf.shlib47 typeset iosize=$3
52 typeset suffix="$sync_str.$iosize-ios"
66 typeset iosize=$7
69 log_note "Running with $threads $sync_str threads, $iosize ios"
118 export BLOCKSIZE=$iosize
132 typeset suffix=$(get_suffix $threads $sync $iosize)
175 typeset threads threads_per_fs sync iosize
180 for iosize in $PERF_IOSIZES; do
188 $iosize
/f-stack/freebsd/kern/
H A Dvfs_default.c961 size_t iosize; in vop_stdallocate() local
976 iosize = vap->va_blocksize; in vop_stdallocate()
977 if (iosize == 0) in vop_stdallocate()
978 iosize = BLKDEV_IOSIZE; in vop_stdallocate()
979 if (iosize > maxphys) in vop_stdallocate()
980 iosize = maxphys; in vop_stdallocate()
981 buf = malloc(iosize, M_TEMP, M_WAITOK); in vop_stdallocate()
1025 cur = iosize; in vop_stdallocate()
1026 if ((offset % iosize) != 0) in vop_stdallocate()
1027 cur -= (offset % iosize); in vop_stdallocate()
H A Dvfs_bio.c2888 int i, iosize, resid; in vfs_vmio_iodone() local
2905 iosize = bp->b_bcount - bp->b_resid; in vfs_vmio_iodone()
2908 if (resid > iosize) in vfs_vmio_iodone()
2909 resid = iosize; in vfs_vmio_iodone()
2938 iosize -= resid; in vfs_vmio_iodone()