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 88580cc2ca27e3bc43774f4243d5ee43189d49ff (commit) via db4b0786a334a2ddd41db1cffbcc520c227752d7 (commit) via d29a600e5c8a07b791a5a9d22abe0b19e4710db2 (commit) from 4b06870d90f542ce559c45db844f7f4a3f709aa8 (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/88580cc2ca27e3bc43774f4243d5ee4318... commit 88580cc2ca27e3bc43774f4243d5ee43189d49ff Author: Junchao Zhang <[email protected]> Date: Tue Oct 29 11:24:09 2013 -0500 Use the standard #ifndef/#include in mpitimpl.h Signed-off-by: Pavan Balaji <[email protected]> diff --git a/src/include/mpitimpl.h b/src/include/mpitimpl.h index f84acd9..9f3120d 100644 --- a/src/include/mpitimpl.h +++ b/src/include/mpitimpl.h @@ -7,8 +7,8 @@ /* Types and interfaces in this file are internally used by MPIR_T itself. * Other modules should call higher level interfaces in mpit.h instead. */ -#ifndef MPIT_INTERNAL_H_INCLUDED -#define MPIT_INTERNAL_H_INCLUDED +#ifndef MPITIMPL_H_INCLUDED +#define MPITIMPL_H_INCLUDED #include "mpi.h" #include "mpiu_utarray.h" http://git.mpich.org/mpich.git/commitdiff/db4b0786a334a2ddd41db1cffbcc520c22... commit db4b0786a334a2ddd41db1cffbcc520c227752d7 Author: Junchao Zhang <[email protected]> Date: Mon Oct 28 23:22:07 2013 -0500 Include mpitimpl.h in mpich_cvars.h Since in mpich_cvars.h, we used a type MPIR_T_cvar_range_value_t, which is defined in mpitimpl.h. Fix #1953 Signed-off-by: Pavan Balaji <[email protected]> diff --git a/maint/gencvars b/maint/gencvars index b3bb29e..0f7575c 100755 --- a/maint/gencvars +++ b/maint/gencvars @@ -133,6 +133,8 @@ print CVAR_HDR <<EOT; #if !defined($hdr_guard) #define $hdr_guard +#include "mpitimpl.h" /* for MPIR_T_cvar_range_value_t */ + EOT print CVAR_C <<EOT; http://git.mpich.org/mpich.git/commitdiff/d29a600e5c8a07b791a5a9d22abe0b19e4... commit d29a600e5c8a07b791a5a9d22abe0b19e4710db2 Author: Junchao Zhang <[email protected]> Date: Mon Oct 28 23:16:29 2013 -0500 Use the new MPI_T cvar name prefix MPIR_CVAR_ Signed-off-by: Pavan Balaji <[email protected]> diff --git a/src/mpid/common/sock/poll/sock_post.i b/src/mpid/common/sock/poll/sock_post.i index 9161ce1..f32ddd3 100644 --- a/src/mpid/common/sock/poll/sock_post.i +++ b/src/mpid/common/sock/poll/sock_post.i @@ -333,10 +333,10 @@ int MPIDU_Sock_listen(struct MPIDU_Sock_set * sock_set, void * user_ptr, int portnum; /* see if we actually want to find values within a range */ - MPIU_ERR_CHKANDJUMP(MPIR_PARAM_CH3_PORT_RANGE.low < 0 || MPIR_PARAM_CH3_PORT_RANGE.low > MPIR_PARAM_CH3_PORT_RANGE.high, mpi_errno, MPI_ERR_OTHER, "**badportrange"); + MPIU_ERR_CHKANDJUMP(MPIR_CVAR_CH3_PORT_RANGE.low < 0 || MPIR_CVAR_CH3_PORT_RANGE.low > MPIR_CVAR_CH3_PORT_RANGE.high, mpi_errno, MPI_ERR_OTHER, "**badportrange"); /* default MPICH_PORT_RANGE is {0,0} so bind will use any available port */ - for (portnum = MPIR_PARAM_CH3_PORT_RANGE.low; portnum <= MPIR_PARAM_CH3_PORT_RANGE.high; ++portnum) { + for (portnum = MPIR_CVAR_CH3_PORT_RANGE.low; portnum <= MPIR_CVAR_CH3_PORT_RANGE.high; ++portnum) { memset( (void *)&addr, 0, sizeof(addr) ); addr.sin_family = AF_INET; addr.sin_addr.s_addr = htonl(INADDR_ANY); ----------------------------------------------------------------------- Summary of changes: maint/gencvars | 2 ++ src/include/mpitimpl.h | 4 ++-- src/mpid/common/sock/poll/sock_post.i | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) hooks/post-receive -- MPICH primary repository