Home | History | Annotate | Download | only in fio

Lines Matching defs:ipo

1063 	struct io_piece *ipo = NULL;
1074 ipo = rb_entry(n, struct io_piece, rb_node);
1080 if (ipo->flags & IP_F_IN_FLIGHT)
1084 assert(ipo->flags & IP_F_ONRB);
1085 ipo->flags &= ~IP_F_ONRB;
1087 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list);
1093 if (ipo->flags & IP_F_IN_FLIGHT)
1096 flist_del(&ipo->list);
1097 assert(ipo->flags & IP_F_ONLIST);
1098 ipo->flags &= ~IP_F_ONLIST;
1101 if (ipo) {
1104 io_u->offset = ipo->offset;
1105 io_u->buflen = ipo->len;
1106 io_u->numberio = ipo->numberio;
1107 io_u->file = ipo->file;
1110 if (ipo->flags & IP_F_TRIMMED)
1123 get_file(ipo->file);
1129 remove_trim_entry(td, ipo);
1130 free(ipo);