HomeSort by relevance Sort by last modified time
    Searched defs:min_bs (Results 1 - 4 of 4) sorted by null

  /external/fio/
io_u.c 38 unsigned int min_bs = td->o.rw_min_bs; local
43 block = (io_u->offset - f->file_offset) / (uint64_t) min_bs;
44 nr_blocks = (io_u->buflen + min_bs - 1) / min_bs;
49 if ((nr_blocks * min_bs) < io_u->buflen)
50 io_u->buflen = nr_blocks * min_bs;
434 minbs = td->o.min_bs[ddir];
    [all...]
options.c 68 unsigned int max_bs, min_bs; local
77 min_bs = -1;
113 if (val < min_bs)
114 min_bs = val;
154 o->min_bs[ddir] = min_bs;
    [all...]
fio.h 585 unsigned int min_bs; local
587 min_bs = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
588 return min(td->o.min_bs[DDIR_TRIM], min_bs);
thread_options.h 65 unsigned int min_bs[DDIR_RWDIR_CNT]; member in struct:thread_options
292 uint32_t min_bs[DDIR_RWDIR_CNT]; member in struct:thread_options_pack

Completed in 72 milliseconds