From 0de9bd9fa0569dff84a3f45b2bf3e1e8774f414c Mon Sep 17 00:00:00 2001 From: Rich Graham Date: Fri, 19 Oct 2007 19:09:40 +0000 Subject: [PATCH] when attaching an md for posted receive, generate a start event, so that PtlMDUpdate will pick up all incoming events. This commit was SVN r16517. --- ompi/mca/mtl/portals/mtl_portals_recv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ompi/mca/mtl/portals/mtl_portals_recv.c b/ompi/mca/mtl/portals/mtl_portals_recv.c index c853a59161..0ec2a071c1 100644 --- a/ompi/mca/mtl/portals/mtl_portals_recv.c +++ b/ompi/mca/mtl/portals/mtl_portals_recv.c @@ -466,7 +466,10 @@ restart_search: /* associate a memory descriptor with the Match list Entry */ md.threshold = 0; +/* md.options = PTL_MD_OP_PUT | PTL_MD_TRUNCATE | PTL_MD_EVENT_START_DISABLE; +*/ + md.options = PTL_MD_OP_PUT | PTL_MD_TRUNCATE; md.user_ptr = ptl_request; md.eq_handle = ompi_mtl_portals.ptl_eq_h; ret=PtlMDAttach(me_h, md, PTL_UNLINK, &md_h);