Propagate Brian's change so we abort if we run out of CIDs to the csum module
This commit was SVN r21137.
Этот коммит содержится в:
родитель
e1673778be
Коммит
f6da7d86a2
@ -193,6 +193,13 @@ int mca_pml_csum_add_comm(ompi_communicator_t* comm)
|
||||
if (NULL == pml_comm) {
|
||||
return OMPI_ERR_OUT_OF_RESOURCE;
|
||||
}
|
||||
|
||||
/* should never happen, but it was, so check */
|
||||
if (comm->c_contextid > mca_pml_csum.super.pml_max_contextid) {
|
||||
OBJ_RELEASE(pml_comm);
|
||||
return OMPI_ERR_OUT_OF_RESOURCE;
|
||||
}
|
||||
|
||||
mca_pml_csum_comm_init_size(pml_comm, comm->c_remote_group->grp_proc_count);
|
||||
comm->c_pml_comm = pml_comm;
|
||||
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user