HomeSort by relevance Sort by last modified time
    Searched refs:iodepth (Results 1 - 25 of 26) sorted by null

1 2

  /external/fio/examples/
rbd.fio 23 iodepth=32
e4defrag2.fio 66 iodepth=128
80 iodepth=128
enospc-pressure.fio 13 iodepth=128
  /external/fio/engines/
guasi.c 123 if (ld->queued_nr == (int) td->o.iodepth)
221 GDBG_PRINT(("fio_guasi_init(): depth=%d\n", td->o.iodepth));
223 maxthr = td->o.iodepth > GFIO_MIN_THREADS ? td->o.iodepth: GFIO_MIN_THREADS;
231 ld->max_reqs = td->o.iodepth;
239 GDBG_PRINT(("fio_guasi_init(): depth=%d -> %p\n", td->o.iodepth, ld));
libaio.c 153 if (ld->iocbs_nr == (int) td->o.iodepth)
271 err = io_queue_init(td->o.iodepth, &ld->aio_ctx);
279 ld->aio_events = malloc(td->o.iodepth * sizeof(struct io_event));
280 memset(ld->aio_events, 0, td->o.iodepth * sizeof(struct io_event));
281 ld->iocbs = malloc(td->o.iodepth * sizeof(struct iocb *));
283 ld->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
284 memset(ld->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
null.c 101 if (td->o.iodepth != 1) {
102 nd->io_us = (struct io_u **) malloc(td->o.iodepth * sizeof(struct io_u *));
103 memset(nd->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
sg.c 328 sd->cmds = malloc(td->o.iodepth * sizeof(struct sgio_cmd));
329 memset(sd->cmds, 0, td->o.iodepth * sizeof(struct sgio_cmd));
330 sd->events = malloc(td->o.iodepth * sizeof(struct io_u *));
331 memset(sd->events, 0, td->o.iodepth * sizeof(struct io_u *));
336 sd->sgbuf = malloc(sizeof(struct sg_io_hdr) * td->o.iodepth);
337 memset(sd->sgbuf, 0, sizeof(struct sg_io_hdr) * td->o.iodepth);
binject.c 397 bd->cmds = malloc(td->o.iodepth * sizeof(struct b_user_cmd));
398 memset(bd->cmds, 0, td->o.iodepth * sizeof(struct b_user_cmd));
400 bd->events = malloc(td->o.iodepth * sizeof(struct io_u *));
401 memset(bd->events, 0, td->o.iodepth * sizeof(struct io_u *));
rdma.c 314 int qp_depth = td->o.iodepth * 2; /* 2 times of io depth */
694 if (rd->io_u_queued_nr == (int)td->o.iodepth)
785 rd->send_buf.nr = htonl(td->o.iodepth);
797 /* In SEND/RECV test, it's a good practice to setup the iodepth of
1132 rd->io_us_queued = malloc(td->o.iodepth * sizeof(struct io_u *));
1133 memset(rd->io_us_queued, 0, td->o.iodepth * sizeof(struct io_u *));
1136 rd->io_us_flight = malloc(td->o.iodepth * sizeof(struct io_u *));
1137 memset(rd->io_us_flight, 0, td->o.iodepth * sizeof(struct io_u *));
1140 rd->io_us_completed = malloc(td->o.iodepth * sizeof(struct io_u *));
1141 memset(rd->io_us_completed, 0, td->o.iodepth * sizeof(struct io_u *))
    [all...]
posixaio.c 236 pd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u *));
237 memset(pd->aio_events, 0, td->o.iodepth * sizeof(struct io_u *));
sync.c 214 if (sd->queued == td->o.iodepth) {
307 sd->iovecs = malloc(td->o.iodepth * sizeof(struct iovec));
308 sd->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
rbd.c 78 rbd_data->aio_events = malloc(td->o.iodepth * sizeof(struct io_u *));
82 memset(rbd_data->aio_events, 0, td->o.iodepth * sizeof(struct io_u *));
solarisaio.c 191 max_depth = td->o.iodepth;
windowsaio.c 62 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*));
  /external/fio/
gfio.h 24 struct multitext_widget iodepth; member in struct:eta_widget
thread_options.h 49 unsigned int iodepth; member in struct:thread_options
276 uint32_t iodepth; member in struct:thread_options_pack
blktrace.c 517 if (td->o.iodepth != 1)
518 td->o.iodepth = depth;
cconv.c 78 o->iodepth = le32_to_cpu(top->iodepth);
282 top->iodepth = cpu_to_le32(o->iodepth);
init.c 560 * The low water mark cannot be bigger than the iodepth
562 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
563 o->iodepth_low = o->iodepth;
566 * If batch number isn't set, default to the same as iodepth
568 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
569 o->iodepth_batch = o->iodepth;
653 " with 'direct=1' and 'iodepth=1' instead.\n");
1173 log_info("ioengine=%s, iodepth=%u\n",
1174 td->io_ops->name, o->iodepth);
    [all...]
io_u.c 1200 td->latency_qd_high = td->o.iodepth;
1204 td->latency_qd = td->o.iodepth;
1223 * a limit other than td->o.iodepth, bisect between that.
1225 if (td->latency_qd_high != o->iodepth)
1230 if (td->latency_qd > o->iodepth)
1231 td->latency_qd = o->iodepth;
    [all...]
backend.c 986 max_units = td->o.iodepth;
996 err += io_u_rinit(&td->io_u_requeues, td->o.iodepth);
997 err += io_u_qinit(&td->io_u_freelist, td->o.iodepth);
998 err += io_u_qinit(&td->io_u_all, td->o.iodepth);
1023 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
    [all...]
gfio.c 137 multitext_update_entry(&ge->eta.iodepth, 0, "");
    [all...]
ioengines.c 370 if (ret && td->o.iodepth > 1) {
gclient.c 624 sprintf(tmp, "%u", o->iodepth);
625 multitext_add_entry(&ge->eta.iodepth, tmp);
630 multitext_set_entry(&ge->eta.iodepth, 0);
    [all...]
  /external/fio/tools/
genfio 36 IODEPTH=1
53 -D iodepth : Run with the specified iodepth
54 Default is $IODEPTH
95 echo "iodepth=$IODEPTH" >> $TEMPLATE
252 IODEPTH=$OPTARG

Completed in 175 milliseconds

1 2