Home | History | Annotate | Download | only in fio

Lines Matching refs:io_u

14 bool get_next_trim(struct thread_data *td, struct io_u *io_u)
19 * this io_u is from a requeue, we already filled the offsets
21 if (io_u->file)
30 io_u->offset = ipo->offset;
31 io_u->buflen = ipo->len;
32 io_u->file = ipo->file;
50 if (!fio_file_open(io_u->file)) {
51 int r = td_io_open_file(td, io_u->file);
55 io_u->file->file_name);
60 get_file(io_u->file);
61 assert(fio_file_open(io_u->file));
62 io_u->ddir = DDIR_TRIM;
63 io_u->xfer_buf = NULL;
64 io_u->xfer_buflen = io_u->buflen;
66 dprint(FD_VERIFY, "get_next_trim: ret io_u %p\n", io_u);
70 bool io_u_should_trim(struct thread_data *td, struct io_u *io_u)