i40iw: Fix port number for query QP
Port number 0 is an invalid port number. Set it to 1
as there is one port per i40iw device.
Fixes: d374984179
("i40iw: add files for iwarp interface")
Signed-off-by: Mustafa Ismail <mustafa.ismail@intel.com>
Signed-off-by: Shiraz Saleem <shiraz.saleem@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
43bfc24ec1
commit
789f903fd7
|
@ -826,12 +826,14 @@ static int i40iw_query_qp(struct ib_qp *ibqp,
|
||||||
attr->cap.max_inline_data = I40IW_MAX_INLINE_DATA_SIZE;
|
attr->cap.max_inline_data = I40IW_MAX_INLINE_DATA_SIZE;
|
||||||
attr->cap.max_send_sge = I40IW_MAX_WQ_FRAGMENT_COUNT;
|
attr->cap.max_send_sge = I40IW_MAX_WQ_FRAGMENT_COUNT;
|
||||||
attr->cap.max_recv_sge = I40IW_MAX_WQ_FRAGMENT_COUNT;
|
attr->cap.max_recv_sge = I40IW_MAX_WQ_FRAGMENT_COUNT;
|
||||||
|
attr->port_num = 1;
|
||||||
init_attr->event_handler = iwqp->ibqp.event_handler;
|
init_attr->event_handler = iwqp->ibqp.event_handler;
|
||||||
init_attr->qp_context = iwqp->ibqp.qp_context;
|
init_attr->qp_context = iwqp->ibqp.qp_context;
|
||||||
init_attr->send_cq = iwqp->ibqp.send_cq;
|
init_attr->send_cq = iwqp->ibqp.send_cq;
|
||||||
init_attr->recv_cq = iwqp->ibqp.recv_cq;
|
init_attr->recv_cq = iwqp->ibqp.recv_cq;
|
||||||
init_attr->srq = iwqp->ibqp.srq;
|
init_attr->srq = iwqp->ibqp.srq;
|
||||||
init_attr->cap = attr->cap;
|
init_attr->cap = attr->cap;
|
||||||
|
init_attr->port_num = 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue