什么是生成器索引(PI)在ibv_exp_post_send和ibv_exp_post_task的上下文中?

时间:2016-11-08 18:41:44

标签: infiniband rdma mellanox

我正在尝试使用RDMA Aware Programming User Manual附录D中描述的跨渠道通信支持。不幸的是,我对某些函数参数的含义有点困惑。

我的问题

ibv_exp_post_send()ibv_exp_post_task()函数分别采用工作请求结构的链表和工作请求结构的集合*。 cq_count和wqe_count在该结构中的含义是什么?

struct ibv_exp_send_wr {
  // ...
  union {
    // ...          
    struct {
      struct ibv_cq   *cq; /* Completion queue (CQ) that WAIT WR relates to */
      int32_t  cq_count;   /* Producer index (PI) of the CQ */
    } cqe_wait; /* Describes IBV_EXP_WR_CQE_WAIT WR */
    struct {
      struct ibv_qp   *qp; /* Queue pair (QP) that SEND_EN/RECV_EN WR relates to */
      int32_t  wqe_count; /* Producer index (PI) of the QP */
    } wqe_enable; /* Desribes IBV_EXP_WR_RECV_ENABLE and IBV_EXP_WR_SEND_ENABLE WR */
  } task;
  // ...
};

第一个工作请求/完成是否始终编号为1,后续的工作请求/完成是否线性增加?或者这有时会重置,例如在ibv_exp_post_task()调用之间或在处理完某些请求后减少? ibv_exp_post_send或ibv_exp_post_task之间的数字是否一致?

*从技术上讲,指向链接任务列表的指针,每个任务都包含一个工作请求的链接列表。

1 个答案:

答案 0 :(得分:2)

据我所知,cq_count字段的含义取决于可以在ibv_exp_send_wr.send_flags中设置的标记:IBV_EXP_SEND_WAIT_EN_LAST

如果清除该标志,cq_count确定等待完成的相对偏移量。偏移量相对于内部per-CQ字段,仅在设置标志时才更新。

从libmlx5驱动程序中查看此代码:

case IBV_EXP_WR_CQE_WAIT:
{
        struct mlx5_cq *wait_cq = to_mcq(wr->task.cqe_wait.cq);
        uint32_t wait_index = 0;

        wait_index = wait_cq->wait_index +
                        wr->task.cqe_wait.cq_count;
        wait_cq->wait_count = max(wait_cq->wait_count,
                        wr->task.cqe_wait.cq_count);

        if (exp_send_flags & IBV_EXP_SEND_WAIT_EN_LAST) {
                wait_cq->wait_index += wait_cq->wait_count;
                wait_cq->wait_count = 0;
        }

        set_wait_en_seg(seg, wait_cq->cqn, wait_index);
        seg   += sizeof(struct mlx5_wqe_wait_en_seg);
        size += sizeof(struct mlx5_wqe_wait_en_seg) / 16;
}
break;

wqe_count的行为类似,但它也可以接受特殊值零,要求驱动程序启用所有先前发布的工作请求。