We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404987e commit bd47062Copy full SHA for bd47062
ompi/mca/mtl/ofi/mtl_ofi.h
@@ -262,6 +262,7 @@ ompi_mtl_ofi_send_start(struct mca_mtl_base_module_t *mtl,
262
opal_output_verbose(1, ompi_mtl_base_framework.framework_output,
263
"%s:%d: fi_trecv failed: %s(%zd)",
264
__FILE__, __LINE__, fi_strerror(-ret), ret);
265
+ free(ack_req);
266
return ompi_mtl_ofi_get_error(ret);
267
}
268
} else {
@@ -280,6 +281,10 @@ ompi_mtl_ofi_send_start(struct mca_mtl_base_module_t *mtl,
280
281
282
"%s:%d: fi_tinject failed: %s(%zd)",
283
284
+ if (ack_req) {
285
+ fi_cancel((fid_t)ompi_mtl_ofi.ep, &ack_req->ctx);
286
287
+ }
288
289
290
0 commit comments