[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1.3-66-g9164dee
Service Account
noreply at mpich.org
Fri Oct 31 15:11:12 CDT 2014
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 9164deed691140ca0f136e2ac6297248c8f3564f (commit)
from 6e8bc706ec866096809047a25c09781e3788a6c7 (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/9164deed691140ca0f136e2ac6297248c8f3564f
commit 9164deed691140ca0f136e2ac6297248c8f3564f
Author: Antonio Pena Monferrer <apenya at mcs.anl.gov>
Date: Fri Oct 31 15:10:17 2014 -0500
portals4: consider MPI_STATUS_IGNORE in Probe
diff --git a/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_probe.c b/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_probe.c
index f686381..3d88225 100644
--- a/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_probe.c
+++ b/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_probe.c
@@ -158,7 +158,8 @@ int MPID_nem_ptl_iprobe(MPIDI_VC_t *vc, int source, int tag, MPID_Comm *comm, in
} while (!MPID_Request_is_complete(req));
*flag = REQ_PTL(req)->found;
- *status = req->status;
+ if (status != MPI_STATUS_IGNORE)
+ *status = req->status;
MPID_Request_release(req);
-----------------------------------------------------------------------
Summary of changes:
.../channels/nemesis/netmod/portals4/ptl_probe.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list