1
1

Merge pull request #7856 from hjelmn/v4.1.x_add_a_missing_osc_rdma_commit_for_dynamic_memory_windows_that_was_forgotten_before_the_last_release_doh

osc/rdma: fix bug in attach for non-debug builds
Этот коммит содержится в:
Jeff Squyres 2020-06-22 17:16:42 -04:00 коммит произвёл GitHub
родитель 4a466e4f08 059c9614a6
Коммит 6d550a32ca
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -261,8 +261,8 @@ int ompi_osc_rdma_attach (struct ompi_win_t *win, void *base, size_t len)
rdma_region_handle->btl_handle = NULL;
}
assert(OMPI_SUCCESS == ompi_osc_rdma_add_attachment (rdma_region_handle, (intptr_t) base, len));
ret = ompi_osc_rdma_add_attachment (rdma_region_handle, (intptr_t) base, len);
assert(OMPI_SUCCESS == ret);
module->dynamic_handles[region_index] = rdma_region_handle;
#if OPAL_ENABLE_DEBUG