From c08ea5c0f50af50b54808548579f97fdf55cbcb6 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Thu, 29 Sep 2011 21:56:37 +0000 Subject: [PATCH] Set options correctly for the two pts This commit was SVN r25211. --- ompi/mca/mtl/portals4/mtl_portals4_component.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ompi/mca/mtl/portals4/mtl_portals4_component.c b/ompi/mca/mtl/portals4/mtl_portals4_component.c index 4064a13822..b649ab7611 100644 --- a/ompi/mca/mtl/portals4/mtl_portals4_component.c +++ b/ompi/mca/mtl/portals4/mtl_portals4_component.c @@ -217,7 +217,7 @@ ompi_mtl_portals4_component_init(bool enable_progress_threads, /* Create portal table entries */ ret = PtlPTAlloc(ompi_mtl_portals4.ni_h, - PTL_PT_FLOWCTRL, + PTL_PT_ONLY_USE_ONCE | PTL_PT_FLOWCTRL, ompi_mtl_portals4.eq_h, REQ_SEND_TABLE_ID, &ompi_mtl_portals4.send_idx); @@ -228,7 +228,7 @@ ompi_mtl_portals4_component_init(bool enable_progress_threads, goto error; } ret = PtlPTAlloc(ompi_mtl_portals4.ni_h, - PTL_PT_FLOWCTRL, + PTL_PT_ONLY_USE_ONCE, ompi_mtl_portals4.eq_h, REQ_READ_TABLE_ID, &ompi_mtl_portals4.read_idx);