1
1
openmpi/ompi
Edgar Gabriel 9abeaad6e2 so here is what happens:
in the v1.2 series the cid's could never go above the max. allowed for a
particular pml. Because of that, pml_add_comm never checked for the cid, and
in fact pml_add_comm was called in comm_set, which is *before* we knew the
cid.

in the v1.3 series (and trunk) we check now the cid to detect overflow, and
because of that pml_add_comm has been moved *after* the cid allocation
routine, namely into the comm_activate routine.

in the v1.2 series, the comm_activate contained a synchronization step of the
old communicator in order to prevent incoming fragments on the new
communicator, with the main problem being that the allreduce in the
communicator allocation finished at different times on different processes,
and thus, this scenario could and did really occur.

in the v1.3 series, the comm_activate does not contain the synchronization
step anymore, since we introduced the new queue for fragments with unknown
cid. The problem is however, that whether a fragment is known or not is
decided by using ompi_comm_lookup(), which will return something useful as
soon as the cid allocation finished, even before pml_add_comm has been
called. So there is a small time gap where we will not post a message into
queue for unknown cid's, but we can also not look up the process structure
belonging to the rank in that comm ( that is in pml_ob1_match_recv_frag or
something like that). 


The current fix reintroduces the synchronization step in comm_activate, and
ensures that no fragment can be received for a new communicator before the
synchronization occurs , and thus comm_nextcid() and pml_add_comm has been
called. It seems to be the safest and easiest way for now. Welcome back, v1.2.

This commit was SVN r21970.
2009-09-17 14:37:02 +00:00
..
attribute The system headers are supposed to be protected by #ifdef and not by #if. 2009-07-16 18:27:33 +00:00
class - Replace combinations of 2009-08-20 11:42:18 +00:00
communicator so here is what happens: 2009-09-17 14:37:02 +00:00
contrib Add a new contrib area for "libtrace" - a debugger library that outputs the name of the called MPI function plus the value of all its arguments before passing them along to the corresonding PMPI call. 2009-08-20 04:36:20 +00:00
datatype - This fixes trac:2014: 2009-09-02 17:34:01 +00:00
debuggers - Replace combinations of 2009-08-20 11:42:18 +00:00
errhandler - As discussed revert r21330, Fortran-configure info should 2009-06-01 19:02:34 +00:00
etc Many thanks to Ralf W. for finding a subtle bug in these Makefile.am's 2008-06-04 01:28:03 +00:00
file - As discussed revert r21330, Fortran-configure info should 2009-06-01 19:02:34 +00:00
group Fun typo. :-) 2009-08-20 21:23:54 +00:00
include - Replace combinations of 2009-08-20 11:42:18 +00:00
info - As discussed revert r21330, Fortran-configure info should 2009-06-01 19:02:34 +00:00
mca so here is what happens: 2009-09-17 14:37:02 +00:00
mpi so here is what happens: 2009-09-17 14:37:02 +00:00
mpiext Per RFC: MPI Interface Extensions Infrastructure 2009-05-26 20:49:35 +00:00
op Replace jumps with returns. 2009-08-20 02:29:30 +00:00
peruse ... Delayed due to notifier commits earlier this day ... 2009-04-29 01:32:14 +00:00
proc Create two new modex functions for send/recv of specific OPAL data types - basically, ensure that the values are packed and unpacked appropriately. Provides a convenience function as otherwise anyone wanting to send a value had to do this themselves. 2009-07-15 04:54:53 +00:00
request - Replace combinations of 2009-08-20 11:42:18 +00:00
runtime - Replace combinations of 2009-08-20 11:42:18 +00:00
tools Ensure the wrapper compilers detect and respect OPAL_PREFIX 2009-09-09 05:20:02 +00:00
win - Replace combinations of 2009-08-20 11:42:18 +00:00
CMakeLists.txt Complete the support for building on UNC path. 2009-08-27 07:57:26 +00:00
Makefile.am Start using Libtool's shared library versioning scheme. See lengthy 2009-07-23 21:35:17 +00:00