[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2b3-11-g81beb08

Service Account noreply at mpich.org
Mon Jun 8 14:53:21 CDT 2015


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  81beb085d958566b9c6ce9bb2da57f002543c786 (commit)
      from  1dd0cc4ba6db6a079e4285f1f3146bfd184c8b0e (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/81beb085d958566b9c6ce9bb2da57f002543c786

commit 81beb085d958566b9c6ce9bb2da57f002543c786
Author: Jithin Jose <jithin.jose at intel.com>
Date:   Mon Jun 8 12:22:57 2015 -0700

    OFI-Netmod - Handle error event for truncated message
    
    Change-Id: Idfdd37cb62878d9890da80c1092539153f637006
    Signed-off-by: Charles J Archer <charles.j.archer at intel.com>

diff --git a/src/mpid/ch3/channels/nemesis/netmod/ofi/ofi_progress.c b/src/mpid/ch3/channels/nemesis/netmod/ofi/ofi_progress.c
index 3ca9a57..30baab3 100644
--- a/src/mpid/ch3/channels/nemesis/netmod/ofi/ofi_progress.c
+++ b/src/mpid/ch3/channels/nemesis/netmod/ofi/ofi_progress.c
@@ -86,7 +86,7 @@ int MPID_nem_ofi_poll(int in_blocking_poll)
         else if (ret < 0) {
             if (ret == -FI_EAVAIL) {
                 ret = fi_cq_readerr(gl_data.cq, (void *) &error, 0);
-                if (error.err == FI_EMSGSIZE) {
+                if (error.err == FI_ETRUNC) {
                     /* ----------------------------------------------------- */
                     /* This error message should only be delivered on send   */
                     /* events.  We want to ignore truncation errors          */

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

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


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list