Home
last modified time | relevance | path

Searched refs:cqe64 (Results 1 – 6 of 6) sorted by relevance

/linux-6.12.1/drivers/infiniband/hw/mlx5/
Dcq.c85 struct mlx5_cqe64 *cqe64; in get_sw_cqe() local
87 cqe64 = (cq->mcq.cqe_sz == 64) ? cqe : cqe + 64; in get_sw_cqe()
89 if (likely(get_cqe_opcode(cqe64) != MLX5_CQE_INVALID) && in get_sw_cqe()
90 !((cqe64->op_own & MLX5_CQE_OWNER_MASK) ^ !!(n & (cq->ibcq.cqe + 1)))) { in get_sw_cqe()
344 static void handle_atomics(struct mlx5_ib_qp *qp, struct mlx5_cqe64 *cqe64, in handle_atomics() argument
456 struct mlx5_cqe64 *cqe64; in mlx5_poll_one() local
470 cqe64 = (cq->mcq.cqe_sz == 64) ? cqe : cqe + 64; in mlx5_poll_one()
479 opcode = get_cqe_opcode(cqe64); in mlx5_poll_one()
492 qpn = ntohl(cqe64->sop_drop_qpn) & 0xffffff; in mlx5_poll_one()
506 wqe_ctr = be16_to_cpu(cqe64->wqe_counter); in mlx5_poll_one()
[all …]
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/steering/hws/
Dmlx5hws_send.c433 struct mlx5_cqe64 *cqe64) in mlx5hws_parse_cqe() argument
435 if (unlikely(get_cqe_opcode(cqe64) != MLX5_CQE_REQ)) { in mlx5hws_parse_cqe()
436 struct mlx5_err_cqe *err_cqe = (struct mlx5_err_cqe *)cqe64; in mlx5hws_parse_cqe()
438 mlx5_core_err(cq->mdev, "Bad OP in HWS SQ CQE: 0x%x\n", get_cqe_opcode(cqe64)); in mlx5hws_parse_cqe()
452 struct mlx5_cqe64 *cqe64; in mlx5hws_cq_poll_one() local
455 cqe64 = mlx5_cqwq_get_cqe(&cq->wq); in mlx5hws_cq_poll_one()
456 if (!cqe64) { in mlx5hws_cq_poll_one()
467 err = mlx5hws_parse_cqe(cq, cqe64); in mlx5hws_cq_poll_one()
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/steering/
Ddr_send.c189 static int dr_parse_cqe(struct mlx5dr_cq *dr_cq, struct mlx5_cqe64 *cqe64) in dr_parse_cqe() argument
194 opcode = get_cqe_opcode(cqe64); in dr_parse_cqe()
196 idx = be16_to_cpu(cqe64->wqe_counter) & in dr_parse_cqe()
202 idx = be16_to_cpu(cqe64->wqe_counter) & in dr_parse_cqe()
214 struct mlx5_cqe64 *cqe64; in dr_cq_poll_one() local
217 cqe64 = mlx5_cqwq_get_cqe(&dr_cq->wq); in dr_cq_poll_one()
218 if (!cqe64) { in dr_cq_poll_one()
229 err = dr_parse_cqe(dr_cq, cqe64); in dr_cq_poll_one()
/linux-6.12.1/drivers/vfio/pci/mlx5/
Dcmd.c1013 struct mlx5_cqe64 *cqe64; in init_cq_frag_buf() local
1019 cqe64 = buf->cqe_size == 64 ? cqe : cqe + 64; in init_cq_frag_buf()
1020 cqe64->op_own = MLX5_CQE_INVALID << 4; in init_cq_frag_buf()
1672 struct mlx5_cqe64 *cqe64; in get_sw_cqe() local
1674 cqe64 = (cq->mcq.cqe_sz == 64) ? cqe : cqe + 64; in get_sw_cqe()
1676 if (likely(get_cqe_opcode(cqe64) != MLX5_CQE_INVALID) && in get_sw_cqe()
1677 !((cqe64->op_own & MLX5_CQE_OWNER_MASK) ^ !!(n & (cq->ncqe)))) { in get_sw_cqe()
1678 return cqe64; in get_sw_cqe()
/linux-6.12.1/drivers/vdpa/mlx5/net/
Dmlx5_vnet.c345 struct mlx5_cqe64 *cqe64; in cq_frag_buf_init() local
351 cqe64 = cqe; in cq_frag_buf_init()
352 cqe64->op_own = MLX5_CQE_INVALID << 4; in cq_frag_buf_init()
358 struct mlx5_cqe64 *cqe64 = get_cqe(cq, n & (cq->cqe - 1)); in get_sw_cqe() local
360 if (likely(get_cqe_opcode(cqe64) != MLX5_CQE_INVALID) && in get_sw_cqe()
361 !((cqe64->op_own & MLX5_CQE_OWNER_MASK) ^ !!(n & cq->cqe))) in get_sw_cqe()
362 return cqe64; in get_sw_cqe()
501 struct mlx5_cqe64 *cqe64; in mlx5_vdpa_poll_one() local
503 cqe64 = next_cqe_sw(vcq); in mlx5_vdpa_poll_one()
504 if (!cqe64) in mlx5_vdpa_poll_one()
/linux-6.12.1/include/linux/mlx5/
Ddevice.h1083 struct mlx5_cqe64 cqe64; member