1
1

btl/ugni: fix erroneous warning message

This commit prevents the connection code from trying to connect an
endpoint if the directed datagram has been posted but not received.

Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
Этот коммит содержится в:
Nathan Hjelm 2016-09-02 09:17:44 -06:00
родитель 5c9ea565b6
Коммит f93c1f2106

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

@ -208,8 +208,11 @@ int mca_btl_ugni_ep_connect_progress (mca_btl_base_endpoint_t *ep) {
ep->dg_posted = true;
rc = OPAL_ERR_RESOURCE_BUSY;
}
return rc;
}
return OPAL_SUCCESS;
}
return mca_btl_ugni_ep_connect_finish (ep);