From 833f8b2b411753616657143ef556c4f1fbfa9ead Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Tue, 18 Aug 2020 15:39:19 -0600 Subject: [PATCH] ofi mtl: fix problem with mrecv the ofi mtl mrecv was not properly setting the message in/out arg to MPI_MRECV to MPI_MESSAGE_NULL. Signed-off-by: Howard Pritchard (cherry picked from commit e6f81ed6d6f4940c95732451d6ebf4d39cde1591) --- ompi/mca/mtl/ofi/mtl_ofi.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ompi/mca/mtl/ofi/mtl_ofi.h b/ompi/mca/mtl/ofi/mtl_ofi.h index 44e107692c..df13ae6364 100644 --- a/ompi/mca/mtl/ofi/mtl_ofi.h +++ b/ompi/mca/mtl/ofi/mtl_ofi.h @@ -955,6 +955,8 @@ ompi_mtl_ofi_imrecv(struct mca_mtl_base_module_t *mtl, return ompi_mtl_ofi_get_error(ret); } + *message = MPI_MESSAGE_NULL; + return OMPI_SUCCESS; }