Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions opal/mca/btl/uct/btl_uct_component.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,22 @@ static int mca_btl_uct_component_open(void)
opal_mem_hooks_register_release(mca_btl_uct_mem_release_cb, NULL);
}

OBJ_CONSTRUCT(&mca_btl_uct_component.md_list, opal_list_t);
OBJ_CONSTRUCT(&mca_btl_uct_component.memory_domain_list, mca_btl_uct_include_list_t);
OBJ_CONSTRUCT(&mca_btl_uct_component.connection_domain_list, mca_btl_uct_include_list_t);

int rc = mca_btl_uct_component_discover_mds();
if (OPAL_SUCCESS != rc) {
return rc;
}

rc = mca_btl_uct_component_generate_modules(&mca_btl_uct_component.md_list);
if (OPAL_SUCCESS != rc) {
return rc;
}

mca_btl_uct_component.initialized = true;

return OPAL_SUCCESS;
}

Expand Down
2 changes: 1 addition & 1 deletion test/datatype/checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ int main(int argc, char *argv[])
free(packed);

/* clean-ups all data allocations */
opal_finalize_util();
opal_finalize();

return 0;
}
2 changes: 1 addition & 1 deletion test/datatype/ddt_pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ int main(int argc, char *argv[])
ompi_datatype_destroy(&dup_type);

cleanup:
opal_finalize_util();
opal_finalize();

return ret;
}
2 changes: 1 addition & 1 deletion test/datatype/ddt_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ int main(int argc, char *argv[])
assert(pdt1 == NULL);

/* clean-ups all data allocations */
opal_finalize_util();
opal_finalize();

return OMPI_SUCCESS;
}
2 changes: 1 addition & 1 deletion test/datatype/ddt_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ int main(int argc, char *argv[])
assert(pdt2 == NULL);

/* clean-ups all data allocations */
opal_finalize_util();
opal_finalize();

return OMPI_SUCCESS;
}
2 changes: 1 addition & 1 deletion test/datatype/external32.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ int main(int argc, char *argv[])
}
}

opal_finalize_util();
opal_finalize();

return 0;
}
2 changes: 1 addition & 1 deletion test/datatype/opal_datatype_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ int main(int argc, char *argv[])
assert(pdt2 == NULL);

/* clean-ups all data allocations */
opal_finalize_util();
opal_finalize();

return OPAL_SUCCESS;
}
2 changes: 1 addition & 1 deletion test/datatype/partial.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ int main(int argc, char *argv[])
free(packed);

/* clean-ups all data allocations */
opal_finalize_util();
opal_finalize();

return 0;
}
2 changes: 1 addition & 1 deletion test/datatype/position.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ int main(int argc, char *argv[])
}
free(segments);

opal_finalize_util();
opal_finalize();

return (0 == errors ? 0 : -1);
}
2 changes: 1 addition & 1 deletion test/datatype/position_noncontig.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ int main(int argc, char *argv[])
}
free(segments);

opal_finalize_util();
opal_finalize();

return (0 == errors ? 0 : -1);
}
Loading