1
1

Allow the MX to survive if we are unable to connect to a peer. The PML will

try to find another route.

This commit was SVN r12837.
Этот коммит содержится в:
George Bosilca 2006-12-13 01:12:07 +00:00
родитель cae083dec6
Коммит 80bc0c8868

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

@ -376,7 +376,8 @@ int mca_btl_mx_send( struct mca_btl_base_module_t* btl,
if( MCA_BTL_MX_CONNECTED != ((mca_btl_mx_endpoint_t*)endpoint)->endpoint_proc->status ) {
if( MCA_BTL_MX_NOT_REACHEABLE == ((mca_btl_mx_endpoint_t*)endpoint)->endpoint_proc->status )
return OMPI_ERROR;
mca_btl_mx_proc_connect( (mca_btl_mx_endpoint_t*)endpoint );
if( OMPI_SUCCESS != mca_btl_mx_proc_connect( (mca_btl_mx_endpoint_t*)endpoint ) )
return OMPI_ERROR;
}
frag->endpoint = endpoint;