Home
last modified time | relevance | path

Searched refs:aio_req_next (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/uts/common/os/
H A Daio_subr.c560 reqp->aio_req_next = aiop->aio_free; in aio_req_free()
577 reqp->aio_req_next = aiop->aio_free; in aio_req_free_port()
599 ASSERT(reqp->aio_req_prev->aio_req_next == reqp); in aio_verify_queue()
600 ASSERT(reqp->aio_req_next->aio_req_prev == reqp); in aio_verify_queue()
605 } while ((reqp = reqp->aio_req_next) != head); in aio_verify_queue()
626 reqp->aio_req_next = reqp; in aio_enq()
630 reqp->aio_req_next = head; in aio_enq()
632 prev->aio_req_next = reqp; in aio_enq()
646 if (reqp->aio_req_next == reqp) { in aio_deq()
649 reqp->aio_req_prev->aio_req_next = reqp->aio_req_next; in aio_deq()
[all …]
H A Daio.c819 nreqp = reqp->aio_req_next; in aio_unlock_requests()
832 nreqp = reqp->aio_req_next; in aio_unlock_requests()
863 q2work = q2work->aio_req_next; in aio_reqlist_concat()
871 q2->aio_req_prev->aio_req_next = list; in aio_reqlist_concat()
880 q2work->aio_req_prev->aio_req_next = list; in aio_reqlist_concat()
885 q2->aio_req_prev->aio_req_next = q2work; in aio_reqlist_concat()
1020 reqp->aio_req_next = found; in aiosuspend()
1074 next = reqp->aio_req_next; in aiosuspend()
2347 if (reqp->aio_req_next == reqp) { in aio_req_remove()
2356 reqp->aio_req_next->aio_req_prev = reqp->aio_req_prev; in aio_req_remove()
[all …]
/titanic_50/usr/src/uts/common/sys/
H A Daio_impl.h84 struct aio_req_t *aio_req_next; /* doneq and pollq pointers */ member