[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1b1-7-g5f1866c

mysql vizuser noreply at mpich.org
Sun Aug 11 13:18:27 CDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  5f1866c7becfc74abdd231d81c3816313e3801e4 (commit)
       via  4614eb442ba24ae8b900ad3b3019d809a3ca2471 (commit)
      from  a4733053ae0d7291e50bfaee4deda318e2a4a854 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/5f1866c7becfc74abdd231d81c3816313e3801e4

commit 5f1866c7becfc74abdd231d81c3816313e3801e4
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Sun Aug 11 11:03:04 2013 -0500

    Explain default port range for CH3_PORT_RANGE.
    
    The environment description did not mention what the port range 0:0
    meant.
    
    Signed-off-by: Wesley Bland <wbland at mcs.anl.gov>

diff --git a/src/util/param/params.yml b/src/util/param/params.yml
index 7d378c7..c300e96 100644
--- a/src/util/param/params.yml
+++ b/src/util/param/params.yml
@@ -529,7 +529,7 @@ parameters:
         The MPIR_PARAM_CH3_PORT_RANGE environment variable allows you to
         specify the range of TCP ports to be used by the process
         manager and the MPICH library. The format of this variable is
-        <low>:<high>.
+        <low>:<high>.  To specify any available port, use 0:0.
 
     ##############################################################
     # nemesis parameters

http://git.mpich.org/mpich.git/commitdiff/4614eb442ba24ae8b900ad3b3019d809a3ca2471

commit 4614eb442ba24ae8b900ad3b3019d809a3ca2471
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Sun Aug 11 11:01:02 2013 -0500

    Fix range format in README.envvar
    
    The genparams script was displaying the range format as {low,high},
    while the format the environment variables accept is low:high.  This
    commit fixes the script to display the default in the correct format.
    
    Signed-off-by: Wesley Bland <wbland at mcs.anl.gov>

diff --git a/maint/genparams b/maint/genparams
index 36bbad0..db8ed07 100755
--- a/maint/genparams
+++ b/maint/genparams
@@ -586,8 +586,7 @@ sub fmt_default {
             die "Unable to parse range value '$val', stopped";
         }
 
-        $val =~ s/:/,/;
-        return qq({$val});
+        return qq($val);
     }
     else {
         return qq($val);

-----------------------------------------------------------------------

Summary of changes:
 maint/genparams           |    3 +--
 src/util/param/params.yml |    2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list