Commit 5f0f66b0 authored by Steve Wise's avatar Steve Wise Committed by Roland Dreier

RDMA/cxgb3: Fix QP capabilities

- Set the stag0 and fastreg capability bits only for kernel qps.
- QP_PRIV flag is no longer used, so don't set it.
Signed-off-by: default avatarSteve Wise <swise@opengridcomputing.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 6e86841d
...@@ -879,20 +879,13 @@ static int rdma_init(struct iwch_dev *rhp, struct iwch_qp *qhp, ...@@ -879,20 +879,13 @@ static int rdma_init(struct iwch_dev *rhp, struct iwch_qp *qhp,
(qhp->attr.mpa_attr.xmit_marker_enabled << 1) | (qhp->attr.mpa_attr.xmit_marker_enabled << 1) |
(qhp->attr.mpa_attr.crc_enabled << 2); (qhp->attr.mpa_attr.crc_enabled << 2);
/* init_attr.qpcaps = uP_RI_QP_RDMA_READ_ENABLE |
* XXX - The IWCM doesn't quite handle getting these uP_RI_QP_RDMA_WRITE_ENABLE |
* attrs set before going into RTS. For now, just turn uP_RI_QP_BIND_ENABLE;
* them on always... if (!qhp->ibqp.uobject)
*/ init_attr.qpcaps |= uP_RI_QP_STAG0_ENABLE |
#if 0 uP_RI_QP_FAST_REGISTER_ENABLE;
init_attr.qpcaps = qhp->attr.enableRdmaRead |
(qhp->attr.enableRdmaWrite << 1) |
(qhp->attr.enableBind << 2) |
(qhp->attr.enable_stag0_fastreg << 3) |
(qhp->attr.enable_stag0_fastreg << 4);
#else
init_attr.qpcaps = 0x1f;
#endif
init_attr.tcp_emss = qhp->ep->emss; init_attr.tcp_emss = qhp->ep->emss;
init_attr.ord = qhp->attr.max_ord; init_attr.ord = qhp->attr.max_ord;
init_attr.ird = qhp->attr.max_ird; init_attr.ird = qhp->attr.max_ird;
...@@ -900,8 +893,6 @@ static int rdma_init(struct iwch_dev *rhp, struct iwch_qp *qhp, ...@@ -900,8 +893,6 @@ static int rdma_init(struct iwch_dev *rhp, struct iwch_qp *qhp,
init_attr.qp_dma_size = (1UL << qhp->wq.size_log2); init_attr.qp_dma_size = (1UL << qhp->wq.size_log2);
init_attr.rqe_count = iwch_rqes_posted(qhp); init_attr.rqe_count = iwch_rqes_posted(qhp);
init_attr.flags = qhp->attr.mpa_attr.initiator ? MPA_INITIATOR : 0; init_attr.flags = qhp->attr.mpa_attr.initiator ? MPA_INITIATOR : 0;
if (!qhp->ibqp.uobject)
init_attr.flags |= PRIV_QP;
if (peer2peer) { if (peer2peer) {
init_attr.rtr_type = RTR_READ; init_attr.rtr_type = RTR_READ;
if (init_attr.ord == 0 && qhp->attr.mpa_attr.initiator) if (init_attr.ord == 0 && qhp->attr.mpa_attr.initiator)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment