Home
last modified time | relevance | path

Searched refs:cq_head (Results 1 – 5 of 5) sorted by relevance

/f-stack/dpdk/drivers/net/enic/base/
H A Dvnic_cq.c44 unsigned int color_enable, unsigned int cq_head, unsigned int cq_tail, in vnic_cq_init() argument
56 iowrite32(cq_head, &cq->ctrl->cq_head); in vnic_cq_init()
73 iowrite32(0, &cq->ctrl->cq_head); in vnic_cq_clean()
H A Dvnic_cq.h23 uint32_t cq_head; /* 0x20 */ member
69 unsigned int color_enable, unsigned int cq_head, unsigned int cq_tail,
/f-stack/freebsd/crypto/ccp/
H A Dccp.h118 unsigned cq_head; member
250 return ((qp->cq_tail - qp->cq_head) & ((1 << sc->ring_size_order) - 1)); in ccp_queue_get_active()
H A Dccp_hardware.c529 qp->cq_head = idx; in ccp_intr_handle_error()
532 DPRINTF(sc->dev, "%s: wrote sw head:%u\n", __func__, qp->cq_head); in ccp_intr_handle_error()
562 qp->cq_head); in ccp_intr_run_completions()
564 while (qp->cq_head != idx) { in ccp_intr_run_completions()
565 DPRINTF(sc->dev, "%s: completing:%u\n", __func__, qp->cq_head); in ccp_intr_run_completions()
567 cctx = &qp->completions_ring[qp->cq_head]; in ccp_intr_run_completions()
575 memset(&qp->desc_ring[qp->cq_head], 0, in ccp_intr_run_completions()
576 sizeof(qp->desc_ring[qp->cq_head])); in ccp_intr_run_completions()
578 qp->cq_head = (qp->cq_head + 1) % (1 << sc->ring_size_order); in ccp_intr_run_completions()
586 DPRINTF(sc->dev, "%s: wrote sw head:%u\n", __func__, qp->cq_head); in ccp_intr_run_completions()
H A Dccp.c749 db_printf(" head: %u\n", qp->cq_head); in db_show_ccp_qp()