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 82730e28c4c8e632cfebc129a7bccf3b928a72bd (commit) from 78bc8c8a11ed5e2a3e38b0f72c397fcd9e76bfc1 (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/82730e28c4c8e632cfebc129a7bccf3b92... commit 82730e28c4c8e632cfebc129a7bccf3b928a72bd Author: Xin Zhao <[email protected]> Date: Fri Aug 21 09:48:03 2015 -0500 Bug-fix on MPIDI_CH3I_Win_find_target. Originally we forgot to move on to the next target element when traversing the target list in each slot. Here we fixed it. The bug was not found because the size of slot array is large and we never run processes more than size of slot array, so there always be only one target in each slot. Signed-off-by: Min Si <[email protected]> diff --git a/src/mpid/ch3/include/mpid_rma_oplist.h b/src/mpid/ch3/include/mpid_rma_oplist.h index 73267b4..1680ae8 100644 --- a/src/mpid/ch3/include/mpid_rma_oplist.h +++ b/src/mpid/ch3/include/mpid_rma_oplist.h @@ -350,6 +350,7 @@ static inline int MPIDI_CH3I_Win_find_target(MPID_Win * win_ptr, int target_rank while (t != NULL) { if (t->target_rank == target_rank) break; + t = t->next; } (*e) = t; ----------------------------------------------------------------------- Summary of changes: src/mpid/ch3/include/mpid_rma_oplist.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) hooks/post-receive -- MPICH primary repository