1
1
If there are multiple QP's, RDMACM will not send a message if the
qpnum != 0.  In doing so, it will log an error unecessarily.  This
removes that.

This commit was SVN r18363.
Этот коммит содержится в:
Jon Mason 2008-05-02 20:12:01 +00:00
родитель 3989981578
Коммит a3bf503e01

Просмотреть файл

@ -697,10 +697,6 @@ static int create_dummy_qp(struct rdmacm_contents *local, struct rdma_cm_id *id,
struct ibv_qp_init_attr attr;
struct ibv_qp *qp;
if (qpnum != 0) {
return -1;
}
/* create the qp via rdma_create_qp() */
memset(&attr, 0, sizeof(attr));
attr.qp_type = IBV_QPT_RC;