Skip to content

Commit 168e74d

Browse files
authored
Merge pull request #4798 from hjelmn/ob1_fix
pml/ob1: ignore the eager limit of RDMA-only btls
2 parents 4f13dbc + da9f833 commit 168e74d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/pml/ob1/pml_ob1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ int mca_pml_ob1_add_procs(ompi_proc_t** procs, size_t nprocs)
341341
expose all currently in use btls. */
342342

343343
OPAL_LIST_FOREACH(sm, &mca_btl_base_modules_initialized, mca_btl_base_selected_module_t) {
344-
if (sm->btl_module->btl_eager_limit < sizeof(mca_pml_ob1_hdr_t)) {
344+
if ((MCA_BTL_FLAGS_SEND & sm->btl_module->btl_flags) && sm->btl_module->btl_eager_limit < sizeof(mca_pml_ob1_hdr_t)) {
345345
opal_show_help("help-mpi-pml-ob1.txt", "eager_limit_too_small",
346346
true,
347347
sm->btl_component->btl_version.mca_component_name,

0 commit comments

Comments
 (0)