Actually, the port was still left open forever before the change. The
bug damaged the port string, and it was not usable anymore, not only
in subsequent Comm_accept, but also in Close_port or Unpublish_name.
To more specifically answer to your open port concern, if the user
does not want to have an open port anymore, he should specifically
call MPI_Close_port and not rely on MPI_Comm_accept to close it.
Actually the standard suggests the exact contrary: section 5.4.2
states "it must call MPI_Open_port to establish a port [...] it must
call MPI_Comm_accept to accept connections from clients". Because
there is multiple clients AND multiple connections in that sentence, I
assume the port can be used in multiple accepts.
Aurelien
Le 25 avr. 08 à 16:53, Ralph Castain a écrit :
Hmmm...just to clarify, this wasn't a "bug". It was my understanding
per the
MPI folks that a separate, unique port had to be created for every
invocation of Comm_accept. They didn't want a port hanging around
open, and
their plan was to close the port immediately after the connection was
established.
So dpm_orte was written to that specification. When I reorganized
the code,
I left the logic as it had been written - which was actually done by
the MPI
side of the house, not me.
I have no problem with making the change. However, since the
specification
was created on the MPI side, I just want to make sure that the MPI
folks all
realize this has now been changed. Obviously, if this change in spec
is
adopted, someone needs to make sure that the C and Fortran bindings -
do not-
close that port any more!
Ralph
On 4/25/08 2:41 PM, "boute...@osl.iu.edu" <boute...@osl.iu.edu> wrote:
Author: bouteill
Date: 2008-04-25 16:41:44 EDT (Fri, 25 Apr 2008)
New Revision: 18303
URL: https://svn.open-mpi.org/trac/ompi/changeset/18303
Log:
Fix a bug that rpevented to use the same port (as returned by
Open_port) for
several Comm_accept)
Text files modified:
trunk/ompi/mca/dpm/orte/dpm_orte.c | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
Modified: trunk/ompi/mca/dpm/orte/dpm_orte.c
=
=
=
=
=
=
=
=
=
=====================================================================
--- trunk/ompi/mca/dpm/orte/dpm_orte.c (original)
+++ trunk/ompi/mca/dpm/orte/dpm_orte.c 2008-04-25 16:41:44 EDT
(Fri, 25 Apr
2008)
@@ -848,8 +848,14 @@
{
char *tmp_string, *ptr;
+ /* copy the RML uri so we can return a malloc'd value
+ * that can later be free'd
+ */
+ tmp_string = strdup(port_name);
+
/* find the ':' demarking the RML tag we added to the end */
- if (NULL == (ptr = strrchr(port_name, ':'))) {
+ if (NULL == (ptr = strrchr(tmp_string, ':'))) {
+ free(tmp_string);
return NULL;
}
@@ -863,15 +869,10 @@
/* see if the length of the RML uri is too long - if so,
* truncate it
*/
- if (strlen(port_name) > MPI_MAX_PORT_NAME) {
- port_name[MPI_MAX_PORT_NAME] = '\0';
+ if (strlen(tmp_string) > MPI_MAX_PORT_NAME) {
+ tmp_string[MPI_MAX_PORT_NAME] = '\0';
}
-
- /* copy the RML uri so we can return a malloc'd value
- * that can later be free'd
- */
- tmp_string = strdup(port_name);
-
+
return tmp_string;
}
_______________________________________________
svn mailing list
s...@open-mpi.org
http://www.open-mpi.org/mailman/listinfo.cgi/svn
_______________________________________________
devel mailing list
de...@open-mpi.org
http://www.open-mpi.org/mailman/listinfo.cgi/devel