Lines Matching defs:nxt
2055 struct io_kiocb *nxt = req->link;
2057 req->link = nxt->link;
2058 nxt->link = NULL;
2085 struct io_kiocb *nxt, *link = req->link;
2094 nxt = link->link;
2100 link = nxt;
2136 struct io_kiocb *nxt;
2156 nxt = req->link;
2158 return nxt;
2323 struct io_kiocb *nxt = io_req_find_next(req);
2325 if (nxt)
2326 io_req_task_queue(nxt);
2419 struct io_kiocb *nxt = NULL;
2422 nxt = io_req_find_next(req);
2425 return nxt;
4328 struct io_buffer *nxt;
4330 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4331 list_del(&nxt->list);
4332 kfree(nxt);
6327 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
6330 if (io_is_timeout_noseq(nxt))
6332 /* nxt.seq is behind @tail, otherwise would've been completed */
6333 if (off >= nxt->timeout.target_seq - tail)
9336 struct io_kiocb *req, *nxt;
9338 list_for_each_entry_safe(req, nxt, list, inflight_entry) {