那些使用RDMA_CM库进行过RDMA编程的人?
我很难找到简单的例子来学习。有一个rdma_client& libdmacm中的rdma_server示例,但它不在循环中运行(rping执行循环,但它是直接使用IB谓词而不是rdma_cm函数编写的。)
我已经整理了一个简单的乒乓球计划,但它在1到100次反弹后锁定在任何地方。我发现在客户端内部添加睡眠会使其在挂起之前工作更长时间,这表明存在竞争条件。
客户端卡在rdma_get_send_comp()中,服务器卡在rdma_get_recv_comp()中。
我有限的理解是,在每个rdma_post_send()之前,你需要发出一个rdma_post_recv(),它将在发送之后发布。在每次发送之前(第一个客户端发送除外),您需要等待一条消息(rdma_get_recv()),指示另一方已准备好接收。
可能出现什么问题?
Server(rdma_cm_id *id)
{
ibv_wc wc;
int ret;
uint8_t recvBuffer[MESSAGE_BUFFER_SIZE],
sendBuffer[MESSAGE_BUFFER_SIZE];
ibv_mr *recvMemRegion = rdma_reg_msgs(id, recvBuffer, MESSAGE_BUFFER_SIZE);
if (!recvMemRegion)
throw 0;
ibv_mr *sendMemRegion = rdma_reg_msgs(id, sendBuffer, MESSAGE_BUFFER_SIZE);
if (!sendMemRegion)
throw 0;
if (ret = rdma_post_recv(id, NULL, recvBuffer, 1, recvMemRegion))
throw 0;
if (ret = rdma_accept(id, NULL))
throw 0;
do
{
if ((ret = rdma_get_recv_comp(id, &wc)) <= 0)
throw 0;
if (ret = rdma_post_recv(id, NULL, recvBuffer, 1, recvMemRegion))
throw 0;
if (ret = rdma_post_send(id, NULL, sendBuffer, 1, sendMemRegion, 0))
throw 0;
printf(".");
fflush(stdout);
if ((ret = rdma_get_send_comp(id, &wc)) <= 0)
throw 0;
}
while (true);
}
Client() // sends the 1st message
{
// queue-pair parameters are:
attr.cap.max_send_wr = attr.cap.max_recv_wr = 4;
attr.cap.max_send_sge = attr.cap.max_recv_sge = 2;
attr.cap.max_inline_data = 16;
attr.qp_context = id;
attr.sq_sig_all = 1;
attr.qp_type = IBV_QPT_RC;
<create connection boiler plate>
uint8_t recvBuffer[MESSAGE_BUFFER_SIZE],
sendBuffer[MESSAGE_BUFFER_SIZE];
recvMemRegion = rdma_reg_msgs(id, recvBuffer, MESSAGE_BUFFER_SIZE);
if (!recvMemRegion)
throw 0;
sendMemRegion = rdma_reg_msgs(id, sendBuffer, MESSAGE_BUFFER_SIZE);
if (!sendMemRegion)
throw 0;
if (ret = rdma_connect(id, NULL))
throw 0;
do
{
if (ret = rdma_post_recv(id, NULL, recvBuffer, 1, recvMemRegion))
throw 0;
//usleep(5000);
if (ret = rdma_post_send(id, NULL, sendBuffer, 1, sendMemRegion, 0))
throw 0;
if ((ret = rdma_get_send_comp(id, &wc)) <= 0)
throw 0;
if ((ret = rdma_get_recv_comp(id, &wc)) <= 0)
throw 0;
printf(".");
fflush(stdout);
}
while (true);
}
答案 0 :(得分:2)
诅咒!我有点在SUSE 11附带的librdmacm-1.0.15-1(2012年)中的一个错误。我知道我的发送/接收测序没有任何问题。
我首先尝试将我的代码与其他示例进行比较。在一个例子中,我看到了
while (!ibv_poll_cq(id->send_cq, 1, &wc));
代替rdma_get_send_comp(),同样适用于rdma_get_recv_comp()。我试图在我的例子中取代那些奇迹般的,悬挂已经消失了!
嗯,也许rdma_get_send_comp()没有做我期待的事情。我最好看看代码。我得到了1.0.15和1.0.18的代码,我在rdma_verbs.h中看到了什么?
2个非常不同的IB动词序列:
// 1.0.15
rdma_get_send_comp(struct rdma_cm_id *id, struct ibv_wc *wc)
{
struct ibv_cq *cq;
void *context;
int ret;
ret = ibv_poll_cq(id->send_cq, 1, wc);
if (ret)
goto out;
ret = ibv_req_notify_cq(id->send_cq, 0);
if (ret)
return rdma_seterrno(ret);
while (!(ret = ibv_poll_cq(id->send_cq, 1, wc))) {
ret = ibv_get_cq_event(id->send_cq_channel, &cq, &context);
if (ret)
return rdma_seterrno(ret);
assert(cq == id->send_cq && context == id);
ibv_ack_cq_events(id->send_cq, 1);
}
out:
return (ret < 0) ? rdma_seterrno(ret) : ret;
}
vs
// 1.0.18
rdma_get_send_comp(struct rdma_cm_id *id, struct ibv_wc *wc)
{
struct ibv_cq *cq;
void *context;
int ret;
do {
ret = ibv_poll_cq(id->send_cq, 1, wc);
if (ret)
break;
ret = ibv_req_notify_cq(id->send_cq, 0);
if (ret)
return rdma_seterrno(ret);
ret = ibv_poll_cq(id->send_cq, 1, wc);
if (ret)
break;
ret = ibv_get_cq_event(id->send_cq_channel, &cq, &context);
if (ret)
return ret;
assert(cq == id->send_cq && context == id);
ibv_ack_cq_events(id->send_cq, 1);
} while (1);
return (ret < 0) ? rdma_seterrno(ret) : ret;
}
任何人都可以解释为什么1.0.18在1.0.15随机挂起时有效吗?