|
@@ -753,6 +753,11 @@ static void connect_request_upcall(struct iwch_ep *ep)
|
|
|
event.private_data_len = ep->plen;
|
|
|
event.private_data = ep->mpa_pkt + sizeof(struct mpa_message);
|
|
|
event.provider_data = ep;
|
|
|
+ /*
|
|
|
+ * Until ird/ord negotiation via MPAv2 support is added, send max
|
|
|
+ * supported values
|
|
|
+ */
|
|
|
+ event.ird = event.ord = 8;
|
|
|
if (state_read(&ep->parent_ep->com) != DEAD) {
|
|
|
get_ep(&ep->com);
|
|
|
ep->parent_ep->com.cm_id->event_handler(
|
|
@@ -770,6 +775,11 @@ static void established_upcall(struct iwch_ep *ep)
|
|
|
PDBG("%s ep %p\n", __func__, ep);
|
|
|
memset(&event, 0, sizeof(event));
|
|
|
event.event = IW_CM_EVENT_ESTABLISHED;
|
|
|
+ /*
|
|
|
+ * Until ird/ord negotiation via MPAv2 support is added, send max
|
|
|
+ * supported values
|
|
|
+ */
|
|
|
+ event.ird = event.ord = 8;
|
|
|
if (ep->com.cm_id) {
|
|
|
PDBG("%s ep %p tid %d\n", __func__, ep, ep->hwtid);
|
|
|
ep->com.cm_id->event_handler(ep->com.cm_id, &event);
|