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 cc50ed51a98bf1bf5e572bf32ac11f6d173bf701 (commit) from 1a6b652432cc85a976eeaaf011d13fe7dcf302a3 (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/cc50ed51a98bf1bf5e572bf32ac11f6d17... commit cc50ed51a98bf1bf5e572bf32ac11f6d173bf701 Author: Paul Coffman <[email protected]> Date: Tue Apr 1 06:27:14 2014 -0500 Balance-contig fix: wrong initial index in the final sort on the bridgelist, was starting an index at -1 instead of 0, resulting in typically bizzare (occaional) memory errors. Signed-off-by: Rob Latham <[email protected]> diff --git a/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_aggrs.c b/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_aggrs.c index 5c9c9bc..0812b78 100644 --- a/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_aggrs.c +++ b/src/mpi/romio/adio/ad_gpfs/bg/ad_bg_aggrs.c @@ -418,7 +418,7 @@ ADIOI_BG_compute_agg_ranklist_serial ( ADIO_File fd, // for each ion make sure bridgelist is in rank order int startSortIndex = -1; int endSortIndex = -1; - int currentBridgeIndex = -1; + int currentBridgeIndex = 0; while (endSortIndex < numbridges) { int currentIonId = summaryranklistionids[currentBridgeIndex]; ----------------------------------------------------------------------- Summary of changes: src/mpi/romio/adio/ad_gpfs/bg/ad_bg_aggrs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository