|
@@ -1398,8 +1398,6 @@ static struct ib_qp *nes_create_qp(struct ib_pd *ibpd,
|
|
|
nes_debug(NES_DBG_QP, "QP%u structure located @%p.Size = %u.\n",
|
|
|
nesqp->hwqp.qp_id, nesqp, (u32)sizeof(*nesqp));
|
|
|
spin_lock_init(&nesqp->lock);
|
|
|
- init_waitqueue_head(&nesqp->state_waitq);
|
|
|
- init_waitqueue_head(&nesqp->kick_waitq);
|
|
|
nes_add_ref(&nesqp->ibqp);
|
|
|
break;
|
|
|
default:
|
|
@@ -3005,7 +3003,6 @@ int nes_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
|
|
|
" already done based on hw state.\n",
|
|
|
nesqp->hwqp.qp_id);
|
|
|
issue_modify_qp = 0;
|
|
|
- nesqp->in_disconnect = 0;
|
|
|
}
|
|
|
switch (nesqp->hw_iwarp_state) {
|
|
|
case NES_AEQE_IWARP_STATE_CLOSING:
|
|
@@ -3018,7 +3015,6 @@ int nes_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
|
|
|
break;
|
|
|
default:
|
|
|
next_iwarp_state = NES_CQP_QP_IWARP_STATE_CLOSING;
|
|
|
- nesqp->in_disconnect = 1;
|
|
|
nesqp->hw_iwarp_state = NES_AEQE_IWARP_STATE_CLOSING;
|
|
|
break;
|
|
|
}
|
|
@@ -3035,7 +3031,6 @@ int nes_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
|
|
|
next_iwarp_state = NES_CQP_QP_IWARP_STATE_TERMINATE;
|
|
|
nesqp->hw_iwarp_state = NES_AEQE_IWARP_STATE_TERMINATE;
|
|
|
issue_modify_qp = 1;
|
|
|
- nesqp->in_disconnect = 1;
|
|
|
break;
|
|
|
case IB_QPS_ERR:
|
|
|
case IB_QPS_RESET:
|
|
@@ -3058,7 +3053,6 @@ int nes_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
|
|
|
if ((nesqp->hw_tcp_state > NES_AEQE_TCP_STATE_CLOSED) &&
|
|
|
(nesqp->hw_tcp_state != NES_AEQE_TCP_STATE_TIME_WAIT)) {
|
|
|
next_iwarp_state |= NES_CQP_QP_RESET;
|
|
|
- nesqp->in_disconnect = 1;
|
|
|
} else {
|
|
|
nes_debug(NES_DBG_MOD_QP, "QP%u NOT setting NES_CQP_QP_RESET since TCP state = %u\n",
|
|
|
nesqp->hwqp.qp_id, nesqp->hw_tcp_state);
|