[mpich] MPICH primary repository branch, master, updated. v3.2a1-12-g232c390
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 232c39024cf3af13568362b4ac6baba50b8d6068 (commit) from 9e08a8b6ba95b38f642ca4cc2549870644192409 (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/232c39024cf3af13568362b4ac6baba50b... commit 232c39024cf3af13568362b4ac6baba50b8d6068 Author: Su Huang <[email protected]> Date: Thu Sep 11 14:17:33 2014 -0400 pamid: LE RDMA hit "mlx5: got completion with error" and even coredump Fixed a bug in MPID_Win_allgather to avoid passing 0 for memory registration (ibm) D199265 Signed-off-by: Michael Blocksome <[email protected]> diff --git a/src/mpid/pamid/src/onesided/mpid_win_create.c b/src/mpid/pamid/src/onesided/mpid_win_create.c index 15f5e60..6c1b9cc 100644 --- a/src/mpid/pamid/src/onesided/mpid_win_create.c +++ b/src/mpid/pamid/src/onesided/mpid_win_create.c @@ -127,7 +127,7 @@ MPIDI_Win_allgather( MPI_Aint size, MPID_Win **win_ptr ) /* --------------------------------------- */ /* Setup the PAMI sections of the window */ /* --------------------------------------- */ - rc = PAMI_Memregion_create(MPIDI_Context[0], win->mpid.info[rank].base_addr, win->mpid.info[rank].base_size, &length_out, &winfo->memregion); + rc = PAMI_Memregion_create(MPIDI_Context[0], win->mpid.info[rank].base_addr, win->size, &length_out, &winfo->memregion); #ifdef USE_PAMI_RDMA MPIU_ERR_CHKANDJUMP((rc != PAMI_SUCCESS), mpi_errno, MPI_ERR_OTHER, "**nomem"); MPIU_ERR_CHKANDJUMP((win->size < length_out), mpi_errno, MPI_ERR_OTHER, "**nomem"); ----------------------------------------------------------------------- Summary of changes: src/mpid/pamid/src/onesided/mpid_win_create.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org