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 3efedf179d0cd885d32f8b47eccc52f9f851ef17 (commit) via 3503f3959706f45190e351c29cacce3f4728889a (commit) from 1e8b428e5294512db56083890556a45a786787eb (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/3efedf179d0cd885d32f8b47eccc52f9f8... commit 3efedf179d0cd885d32f8b47eccc52f9f851ef17 Author: Xin Zhao <[email protected]> Date: Tue Jun 23 11:36:50 2015 -0500 Simplify code: using MPIDI_CH3I_RMA_Ops_free_elem to delete operation. Signed-off-by: Sangmin Seo <[email protected]> diff --git a/src/mpid/ch3/src/ch3u_rma_progress.c b/src/mpid/ch3/src/ch3u_rma_progress.c index 2dcadf7..206ad50 100644 --- a/src/mpid/ch3/src/ch3u_rma_progress.c +++ b/src/mpid/ch3/src/ch3u_rma_progress.c @@ -545,8 +545,7 @@ int MPIDI_CH3I_RMA_Free_ops_before_completion(MPID_Win * win_ptr) curr_op->reqs = NULL; curr_op->reqs_size = 0; } - MPL_LL_DELETE(*op_list_head, *op_list_tail, curr_op); - MPIDI_CH3I_Win_op_free(win_ptr, curr_op); + MPIDI_CH3I_RMA_Ops_free_elem(win_ptr, op_list_head, op_list_tail, curr_op); } else { if (read_flag == 1) { http://git.mpich.org/mpich.git/commitdiff/3503f3959706f45190e351c29cacce3f47... commit 3503f3959706f45190e351c29cacce3f4728889a Author: Xin Zhao <[email protected]> Date: Tue Jun 23 11:10:40 2015 -0500 Bug-fix on typo error. Signed-off-by: Sangmin Seo <[email protected]> diff --git a/src/mpid/ch3/src/ch3u_rma_progress.c b/src/mpid/ch3/src/ch3u_rma_progress.c index f6a7ae3..2dcadf7 100644 --- a/src/mpid/ch3/src/ch3u_rma_progress.c +++ b/src/mpid/ch3/src/ch3u_rma_progress.c @@ -551,7 +551,7 @@ int MPIDI_CH3I_RMA_Free_ops_before_completion(MPID_Win * win_ptr) else { if (read_flag == 1) { op_list_head = &curr_target->issued_write_op_list_head; - op_list_head = &curr_target->issued_write_op_list_tail; + op_list_tail = &curr_target->issued_write_op_list_tail; read_flag = 0; } else { ----------------------------------------------------------------------- Summary of changes: src/mpid/ch3/src/ch3u_rma_progress.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) hooks/post-receive -- MPICH primary repository