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

  /external/fio/engines/
rdma.c 1052 unsigned int max_bs; local
1153 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
1162 io_u->mr = ibv_reg_mr(rd->pd, io_u->buf, max_bs,
1174 rd->send_buf.rmt_us[i].size = htonl(max_bs);
1177 log_info("fio: Send rkey %x addr %" PRIx64 " len %d to client\n", io_u->mr->rkey, io_u->buf, max_bs); */
  /external/fio/
backend.c 1018 unsigned int max_bs, min_write; local
1024 max_bs = td_max_bs(td);
1026 td->orig_buffer_size = (unsigned long long) max_bs
1060 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
1097 io_u_fill_buffer(td, io_u, min_write, max_bs);
1103 fill_verify_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
1126 p += max_bs;
    [all...]
fio.h 594 unsigned int max_bs; local
596 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
597 return max(td->o.max_bs[DDIR_TRIM], max_bs);
options.c 68 unsigned int max_bs, min_bs; local
76 max_bs = 0;
111 if (val > max_bs)
112 max_bs = val;
158 o->max_bs[ddir] = max_bs;
    [all...]
thread_options.h 70 unsigned int max_bs[DDIR_RWDIR_CNT]; member in struct:thread_options
299 uint32_t max_bs[DDIR_RWDIR_CNT]; member in struct:thread_options_pack

Completed in 137 milliseconds