[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1-70-g22c4940

Service Account noreply at mpich.org
Mon Mar 24 16:37:16 CDT 2014


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  22c4940aed5d4fedd24e4f7613f0929275ba5824 (commit)
       via  78177acc954f9cc944365ff3f4752348d01a8403 (commit)
      from  58287a002675b391b0b6381d043aca23a6dd9f29 (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/22c4940aed5d4fedd24e4f7613f0929275ba5824

commit 22c4940aed5d4fedd24e4f7613f0929275ba5824
Author: Rob Latham <robl at mcs.anl.gov>
Date:   Fri Mar 14 09:11:41 2014 -0500

    warning fix: provide proper prototype
    
    Signed-off-by: Michael Blocksome <blocksom at us.ibm.com>

diff --git a/src/mpi/romio/adio/ad_bg/ad_bg_tuning.h b/src/mpi/romio/adio/ad_bg/ad_bg_tuning.h
index 98cca71..03703a0 100644
--- a/src/mpi/romio/adio/ad_bg/ad_bg_tuning.h
+++ b/src/mpi/romio/adio/ad_bg/ad_bg_tuning.h
@@ -77,7 +77,7 @@ extern int     bgmpio_bg_nagg_pset;
 
 
 /* set internal variables for tuning environment variables */
-void ad_bg_get_env_vars();
+void ad_bg_get_env_vars(void);
 
 /* report timing breakdown for MPI I/O collective call */
 void ad_bg_timing_crw_report( int rw, ADIO_File fd, int myrank, int nprocs );

http://git.mpich.org/mpich.git/commitdiff/78177acc954f9cc944365ff3f4752348d01a8403

commit 78177acc954f9cc944365ff3f4752348d01a8403
Author: Rob Latham <robl at mcs.anl.gov>
Date:   Fri Mar 14 09:11:09 2014 -0500

    warning fix: shadowed declarations
    
    Signed-off-by: Michael Blocksome <blocksom at us.ibm.com>

diff --git a/src/mpi/romio/adio/ad_bg/ad_bg_read.c b/src/mpi/romio/adio/ad_bg/ad_bg_read.c
index 225d459..32d0c6d 100644
--- a/src/mpi/romio/adio/ad_bg/ad_bg_read.c
+++ b/src/mpi/romio/adio/ad_bg/ad_bg_read.c
@@ -264,7 +264,6 @@ void ADIOI_BG_ReadStrided(ADIO_File fd, void *buf, int count,
 
         for (j=0; j<count; j++) 
         {
-          int i;
               for (i=0; i<flat_buf->count; i++) {
                   userbuf_off = (ADIO_Offset)j*(ADIO_Offset)buftype_extent + flat_buf->indices[i];
       req_off = off;
diff --git a/src/mpi/romio/adio/ad_bg/ad_bg_write.c b/src/mpi/romio/adio/ad_bg/ad_bg_write.c
index 85ea670..4ffbab7 100644
--- a/src/mpi/romio/adio/ad_bg/ad_bg_write.c
+++ b/src/mpi/romio/adio/ad_bg/ad_bg_write.c
@@ -299,7 +299,6 @@ void ADIOI_BG_WriteStrided(ADIO_File fd, const void *buf, int count,
 
         for (j=0; j<count; j++) 
         {
-          int i;
             for (i=0; i<flat_buf->count; i++) {
                 userbuf_off = (ADIO_Offset)j*(ADIO_Offset)buftype_extent + flat_buf->indices[i];
 		req_off = off;
@@ -366,7 +365,6 @@ void ADIOI_BG_WriteStrided(ADIO_File fd, const void *buf, int count,
             offset += disp + (ADIO_Offset)n_filetypes*filetype_extent;
 	}
 	else {
-    int i;
 	    n_etypes_in_filetype = filetype_size/etype_size;
 	    n_filetypes = offset / n_etypes_in_filetype;
 	    etype_in_filetype = offset % n_etypes_in_filetype;

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

Summary of changes:
 src/mpi/romio/adio/ad_bg/ad_bg_read.c   |    1 -
 src/mpi/romio/adio/ad_bg/ad_bg_tuning.h |    2 +-
 src/mpi/romio/adio/ad_bg/ad_bg_write.c  |    2 --
 3 files changed, 1 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list