6a071ecea8
- Update to 2.1.10 * dtest_suite: add option to pause the test. * dtestcm: add client retry, give server time to queue up all listens * dtest: Add new man pages. (dtestx dtestcm dtestsrq) * cma: fix open_query mode, initialize attributes * ucm: up level CM timer logging, increase drep time at scale * dtest: fix return value check on do_rdma_write_with_msg * dtestx: check device capabilities and do atomic tests only if supported by HW * common: set atomic attributes based on provider/device capabilities * build: dtest_suite.sh was moved to test/scripts * mpxyd: let TX thread sleep if no open devices are referenced * mcm: when mmap req from MIC return with fail stat print WARN. * dtest_suite: remove duplicate dtest_suite.sh * dtest: enable -D option (data check) to work with scif provider * dtest_suite: fix typo in user_string var * mcm: remove logs from post send speed path * mcm proxy: push WR from MIC to host with scif mmap memory instead of scif_send. * dtest: the default size in pingpong test is set to 1 byte regardless to user input. * dtest: cleanup 4 printfs from the middle of performance test, may reduce performance. - Refresh patches against 2.1.10 OBS-URL: https://build.opensuse.org/request/show/511580 OBS-URL: https://build.opensuse.org/package/show/science:HPC/dapl?expand=0&rev=16
13 lines
501 B
Diff
13 lines
501 B
Diff
diff --git dapl/openib_cma/device.c dapl/openib_cma/device.c
|
|
index 326df62..f1a253d 100644
|
|
--- dapl/openib_cma/device.c
|
|
+++ dapl/openib_cma/device.c
|
|
@@ -305,7 +305,6 @@ DAT_RETURN dapls_ib_open_hca(IN IB_HCA_NAME hca_name,
|
|
}
|
|
ret = rdma_bind_addr(cm_id, (struct sockaddr *)&hca_ptr->hca_address);
|
|
if ((ret) || (cm_id->verbs == NULL)) {
|
|
- rdma_destroy_id(cm_id);
|
|
dapl_log(DAPL_DBG_TYPE_ERR,
|
|
" open_hca: rdma_bind ERR %s."
|
|
" Is %s configured as IPoIB?\n", strerror(errno), hca_name);
|