Searched defs:mcq (Results 1 - 5 of 5) sorted by relevance

/drivers/infiniband/hw/mlx4/
H A Dcq.c87 return get_sw_cqe(cq, cq->mcq.cons_index);
92 struct mlx4_ib_cq *mcq = to_mcq(cq); local
95 return mlx4_cq_modify(dev->dev, &mcq->mcq, cq_count, cq_period);
213 cq->mcq.set_ci_db = cq->db.db;
214 cq->mcq.arm_db = cq->db.db + 1;
215 *cq->mcq.set_ci_db = 0;
216 *cq->mcq.arm_db = 0;
226 cq->db.dma, &cq->mcq, vector, 0);
230 cq->mcq
444 struct mlx4_ib_cq *mcq = to_mcq(cq); local
[all...]
H A Dmlx4_ib.h78 struct mlx4_cq mcq; member in struct:mlx4_ib_cq
232 static inline struct mlx4_ib_cq *to_mibcq(struct mlx4_cq *mcq) argument
234 return container_of(mcq, struct mlx4_ib_cq, mcq);
/drivers/net/ethernet/mellanox/mlx4/
H A Den_rx.c332 ring->cqn = priv->rx_cq[ring_ind].mcq.cqn;
557 index = cq->mcq.cons_index & ring->size_mask;
562 cq->mcq.cons_index & cq->size)) {
687 ++cq->mcq.cons_index;
688 index = (cq->mcq.cons_index) & ring->size_mask;
699 mlx4_cq_set_ci(&cq->mcq);
701 ring->cons = cq->mcq.cons_index;
708 void mlx4_en_rx_irq(struct mlx4_cq *mcq) argument
710 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
[all...]
H A Den_tx.c313 struct mlx4_cq *mcq = &cq->mcq; local
319 u32 cons_index = mcq->cons_index;
363 mcq->cons_index = cons_index;
364 mlx4_cq_set_ci(mcq);
379 void mlx4_en_tx_irq(struct mlx4_cq *mcq) argument
381 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
H A Dmlx4_en.h300 struct mlx4_cq mcq; member in struct:mlx4_en_cq
514 void mlx4_en_tx_irq(struct mlx4_cq *mcq);
551 void mlx4_en_rx_irq(struct mlx4_cq *mcq);

Completed in 73 milliseconds