Searched refs:nq_next_cmd (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/io/nvme/
H A Dnvme_var.h99 uint16_t nq_next_cmd; member in struct:nvme_qpair
H A Dnvme.c698 qp->nq_next_cmd = 0;
762 * Try to insert the cmd into the active cmd array at the nq_next_cmd
767 while (qp->nq_cmd[qp->nq_next_cmd] != NULL)
768 qp->nq_next_cmd = (qp->nq_next_cmd + 1) % qp->nq_nentry;
769 qp->nq_cmd[qp->nq_next_cmd] = cmd;
773 cmd->nc_sqe.sqe_cid = qp->nq_next_cmd;
778 qp->nq_next_cmd = (qp->nq_next_cmd + 1) % qp->nq_nentry;

Completed in 49 milliseconds