1
1

"failed to ib_cm_listen 10 times" - is know bug in IBCM and we should print it

only if IBCM was explicitly requested.

This commit was SVN r18897.
Этот коммит содержится в:
Pavel Shamis 2008-07-13 16:36:41 +00:00
родитель 12379e7f3e
Коммит 807c53c7b1

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

@ -766,7 +766,9 @@ static int ibcm_component_query(mca_btl_openib_module_t *btl,
if (0 != rc) {
/* Same rationale as above */
OBJ_RELEASE(cmh);
BTL_ERROR(("failed to ib_cm_listen 10 times: rc=%d, errno=%d", rc, errno));
if (mca_btl_openib_component.cpc_explicitly_defined) {
BTL_ERROR(("failed to ib_cm_listen 10 times: rc=%d, errno=%d", rc, errno));
}
rc = OMPI_ERR_NOT_SUPPORTED;
goto error;
}