[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1.3-9-g4d07079

Service Account noreply at mpich.org
Mon Oct 13 12:59:43 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  4d07079d6caf14011de77bbbd3a3b1822b2a6451 (commit)
      from  bc9ce83ea2cb8cdf975811a66bcca59b34c1563c (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/4d07079d6caf14011de77bbbd3a3b1822b2a6451

commit 4d07079d6caf14011de77bbbd3a3b1822b2a6451
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date:   Fri Oct 10 16:30:16 2014 -0500

    portals4: PTL_EVENT_PUT is only valid at the target
    
    Remove incorrect event from send handler assertion. PTL_EVENT_PUT should
    only be seen at the target.
    
    Signed-off-by: Pavan Balaji <balaji at anl.gov>

diff --git a/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_send.c b/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_send.c
index 12b942c..f86cbcc 100644
--- a/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_send.c
+++ b/src/mpid/ch3/channels/nemesis/netmod/portals4/ptl_send.c
@@ -20,7 +20,7 @@ static int handler_send_complete(const ptl_event_t *e)
 
     MPIDI_FUNC_ENTER(MPID_STATE_HANDLER_SEND_COMPLETE);
 
-    MPIU_Assert(e->type == PTL_EVENT_ACK || e->type == PTL_EVENT_PUT || e->type == PTL_EVENT_GET);
+    MPIU_Assert(e->type == PTL_EVENT_ACK || e->type == PTL_EVENT_GET);
 
     if (REQ_PTL(sreq)->md != PTL_INVALID_HANDLE) {
         ret = PtlMDRelease(REQ_PTL(sreq)->md);

-----------------------------------------------------------------------

Summary of changes:
 .../channels/nemesis/netmod/portals4/ptl_send.c    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list