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 32788e87819dda3e98968b977ddf12827009d372 (commit) from e7e36fc7011a4ae4d8ca4e2f8343f64b503f53e4 (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/32788e87819dda3e98968b977ddf128270... commit 32788e87819dda3e98968b977ddf12827009d372 Author: Paul Coffman <[email protected]> Date: Thu Dec 4 20:55:01 2014 -0600 romio gpfs: select correct read buffer addendum The original fix for 'romio gpfs: select correct read buffer' was still missing a critical piece for the last round to use the correct read buffer, resulting in a correctness issue that was missed by IOR but still found by the IBM PE test team. The fix was to correctly toggle the buffer after the last read. Signed-off-by: Paul Coffman <[email protected]> Signed-off-by: Rob Latham <[email protected]> diff --git a/src/mpi/romio/adio/common/p2p_aggregation.c b/src/mpi/romio/adio/common/p2p_aggregation.c index 292ba47..89e891b 100644 --- a/src/mpi/romio/adio/common/p2p_aggregation.c +++ b/src/mpi/romio/adio/common/p2p_aggregation.c @@ -733,10 +733,10 @@ void ADIOI_P2PContigReadAggregation(ADIO_File fd, } if (currentReadBuf == 0) { - read_buf = read_buf0; + read_buf = read_buf1; } else { - read_buf = read_buf1; + read_buf = read_buf0; } } ----------------------------------------------------------------------- Summary of changes: src/mpi/romio/adio/common/p2p_aggregation.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- MPICH primary repository