Home | History | Annotate | Download | only in fio

Lines Matching defs:ipo

16 	struct io_piece *ipo;
27 ipo = flist_entry(td->trim_list.next, struct io_piece, trim_list);
28 remove_trim_entry(td, ipo);
30 io_u->offset = ipo->offset;
31 io_u->buflen = ipo->len;
32 io_u->file = ipo->file;
39 if (ipo->flags & IP_F_ONLIST)
40 flist_del(&ipo->list);
42 assert(ipo->flags & IP_F_ONRB);
43 rb_erase(&ipo->rb_node, &td->io_hist_tree);
46 free(ipo);
48 ipo->flags |= IP_F_TRIMMED;