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 e899f71f715baea41625c33ab0e9c693fa970b31 (commit) via 3af7209c060326f1626c9e8425e06701af4f6c33 (commit) from 25e7fa93c9bc0bf8544478f3ff0d3db6de1def18 (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/e899f71f715baea41625c33ab0e9c693fa... commit e899f71f715baea41625c33ab0e9c693fa970b31 Author: Junchao Zhang <[email protected]> Date: Mon Oct 6 16:06:38 2014 -0500 Revised the description of two MPI pvars Signed-off-by: Junchao Zhang <[email protected]> diff --git a/src/mpid/ch3/src/ch3u_recvq.c b/src/mpid/ch3/src/ch3u_recvq.c index aa5a91a..c37e4b3 100644 --- a/src/mpid/ch3/src/ch3u_recvq.c +++ b/src/mpid/ch3/src/ch3u_recvq.c @@ -139,7 +139,7 @@ int MPIDI_CH3U_Recvq_init(void) MPI_T_BIND_NO_OBJECT, (MPIR_T_PVAR_FLAG_READONLY | MPIR_T_PVAR_FLAG_CONTINUOUS), "CH3", /* category name */ - "number of search passes on the message receive queue"); + "number of search passes on the posted message receive queue"); MPIR_T_PVAR_COUNTER_REGISTER_STATIC( RECVQ, @@ -149,7 +149,7 @@ int MPIDI_CH3U_Recvq_init(void) MPI_T_BIND_NO_OBJECT, (MPIR_T_PVAR_FLAG_READONLY | MPIR_T_PVAR_FLAG_CONTINUOUS), "CH3", - "number of search passes on the message receive queue"); + "number of search passes on the unexpected message receive queue"); MPIR_T_PVAR_TIMER_REGISTER_STATIC( RECVQ, http://git.mpich.org/mpich.git/commitdiff/3af7209c060326f1626c9e8425e06701af... commit 3af7209c060326f1626c9e8425e06701af4f6c33 Author: halim amer <[email protected]> Date: Fri Sep 5 14:02:19 2014 -0500 Added missing incrementation of the posted_recvq_match_attempts pvar This variable is incremented correctly by the MPIDI_CH3U_Recvq_FDP_or_AEU routine, but the MPIDI_CH3U_Recvq_DP fails to do so, although it also goes through the posted recv queue. For instance, the MXM Netmod calls this routine. Signed-off-by: Junchao Zhang <[email protected]> diff --git a/src/mpid/ch3/src/ch3u_recvq.c b/src/mpid/ch3/src/ch3u_recvq.c index 8a76d13..aa5a91a 100644 --- a/src/mpid/ch3/src/ch3u_recvq.c +++ b/src/mpid/ch3/src/ch3u_recvq.c @@ -699,6 +699,7 @@ int MPIDI_CH3U_Recvq_DP(MPID_Request * rreq) MPIR_T_PVAR_TIMER_START(RECVQ, time_failed_matching_postedq); cur_rreq = recvq_posted_head; while (cur_rreq != NULL) { + MPIR_T_PVAR_COUNTER_INC(RECVQ, posted_recvq_match_attempts, 1); if (cur_rreq == rreq) { if (prev_rreq != NULL) { prev_rreq->dev.next = cur_rreq->dev.next; ----------------------------------------------------------------------- Summary of changes: src/mpid/ch3/src/ch3u_recvq.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- MPICH primary repository