Home | History | Annotate | Download | only in engines

Lines Matching defs:max_depth

19 	unsigned int max_depth;
136 if (sd->nr == sd->max_depth)
189 unsigned int max_depth;
191 max_depth = td->o.iodepth;
192 if (max_depth > MAXASYNCHIO) {
193 max_depth = MAXASYNCHIO;
195 max_depth);
199 sd->aio_events = malloc(max_depth * sizeof(struct io_u *));
200 memset(sd->aio_events, 0, max_depth * sizeof(struct io_u *));
201 sd->max_depth = max_depth;