All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vladimir Sokolovsky <vlad-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
To: OpenFabrics EWG <ewg-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org>
Cc: linux-rdma <linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: [ANNOUNCE] OFED 1.5 rc6 release is available
Date: Tue, 22 Dec 2009 18:16:34 +0200	[thread overview]
Message-ID: <4B30F0E2.6010501@dev.mellanox.co.il> (raw)

[-- Attachment #1: Type: text/plain, Size: 1688 bytes --]


Hi,
OFED 1.5-rc6 is available

Notes:

The tarball is available on:
http://www.openfabrics.org/builds/ofed-1.5/release/OFED-1.5-rc6.tgz

To get BUILD_ID run ofed_info

Please report any issues in bugzilla https://bugs.openfabrics.org/  for
OFED 1.5

Vladimir & Tziporet

========================================================================


Release information:
--------------------
Linux Operating Systems:
         - RedHat EL4 up7:       2.6.9-78.ELsmp
         - RedHat EL4 up8:       2.6.9-89.ELsmp
         - RedHat EL5 up3:       2.6.18-128.el5
         - RedHat EL5 up4:       2.6.18-164.el5
         - SLES10 SP2:           2.6.16.60-0.21-smp
         - SLES10 SP3:           2.6.16.60-0.54-smp
         - SLES11:               2.6.27.19-5-default
         - OEL 4 up7             2.6.9-78.ELsmp
         - OEL 4 up8             2.6.9-89.ELsmp
         - CentOS5.3             2.6.18-128.el5
         - CentOS5.4             2.6.18-164.el5
         - Fedora Core12         2.6.31.5-127.fc12   *
         - OpenSuSE 11           2.6.25.5-1.1        *
         - kernel.org:           2.6.29, 2.6.30,
                                 2.6.31 and 2.6.32   *

        * Minimal QA for these versions

Systems:
        * x86_64
        * x86
        * ia64
        * ppc64


Main changes from 1.5 rc5:
============================
1. Updated packages:

       - Management packages:
       libibumad-1.3.4_20091214.tar.gz
       libibmad-1.3.4_20091214.tar.gz
       opensm-3.3.4_20091221_033cf4c.tar.gz
       infiniband-diags-1.5.4_20091221_033cf4c.tar.gz
       ibutils-1.5.tar.gz

       - MPI packages
       mvapich-1.2.0-3567.src.rpm

2. Bug fixes
      See attached.





[-- Attachment #2: ofed_kernel-1.5-rc5_rc6.log --]
[-- Type: text/plain, Size: 4477 bytes --]

commit 1b6ce93a1ccee8d38bc88a7114abd77dae3410be
Author: Vladimir Sokolovsky <vlad-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
Date:   Tue Dec 22 15:22:44 2009 +0200

    Revert "mlx4_core: Added CX3 device IDs"
    
    This reverts commit 6b1c739631ecde05bc674d2351e28d93a6c7f8f4.

commit 2dbe8f24fc424a31ceea533558710c6400b42313
Author: Vladimir Sokolovsky <vlad-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
Date:   Tue Dec 22 15:22:39 2009 +0200

    Revert "mlx4_en: Added device ids table"
    
    This reverts commit 6617c6af3326dae1363bcba40158e02d19e02143.

commit 8da853924c888e943787ea5646a4173df12fd809
Author: Signed-off-by: David Wilder <dwilder-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Date:   Mon Dec 21 16:16:49 2009 +0200

    IPoIB: Clear ipoib_neigh.dgid in ipoib_neigh_alloc()
    
    IPoIB can miss a change in destination GID under some conditions.  The
    problem is caused when ipoib_neigh->dgid contains a stale address.
    The fix is to set ipoib_neigh->dgid to zero in ipoib_neigh_alloc().
    
    This can happen when a system using bonding on its IPoIB interfaces
    has switched its active interface from interface A to B and back to A.
    The system that fails over will not correctly processes the 2nd
    address change, as described below.
    
    When an address has changed neighbor->ha is updated with the new
    address.  Each neighbor has an associated ipoib_neigh.
    ipoib_neigh->dgid also holds a copy of the remote node's hardware
    address.  When an address changes neighbor->ha is updated by the
    network layer (arp code) with the new address.  IPoIB detects this
    change in ipoib_start_xmit() by comparing neighbor->ha with
    ipoib_neigh->dgid.  The bug is that ipoib_neigh->dgid may already
    contain the new address (A) thus the change from B to A is missed by
    ipoib.  Here is the sequence of events:
    
        ipoib_neigh->dgid = A  and  neighbor->ha = A
    
    The address is switched to B (the first switch)
    
        neighbor->ha = B
    
    The change is seen in ipoib_start_xmit() -- neighbor->ha !=
    ipoib_neigh->dgid so ipoib_neigh is released, and a new one is
    allocated.
    
    The allocator may return the same chunk of memory that was just
    released, therefore ipoib_neigh->dgid still contains A at this point.
    
    ipoib_neigh->dgid should be updated in neigh_add_path(), but if the
    following conditions are true dgid is not updated:
    
            1) __path_find() returns a path
            2) path->ah is NULL
    
    The remote system now switches from address B to A, neighbor->ha is
    updated to A.
    
    Now we have again : ipoib_neigh->dgid = A  and  neighbor->ha = A
    Since the addresses are the same ipoib won't process the change in
    address.  Fix this by zeroing out the dgid field when allocating a new
    struct ipoib_neigh.
    
    Signed-off-by: David Wilder <dwilder-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
    Signed-off-by: Roland Dreier <rolandd-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>

commit c5edf35d2baa2ba8169856be56fd6830c5946abe
Author: Ella Podvalny <ella-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
Date:   Sun Dec 20 13:07:49 2009 +0200

    kernel_addons: for fcoe RH5.3
    
    Signed-off-by: Ella Podvalny <ella-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>

commit 9f3ae03fc7f7994ebfcfda0f614a95baf5e8bcb2
Merge: d427319... 85aba0b...
Author: Vladimir Sokolovsky <vlad-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
Date:   Sun Dec 20 13:44:27 2009 +0200

    Merge branch 'ofed_kernel_1_5' of git://git.openfabrics.org/~amirv/ofed_1_5 into ofed_kernel_1_5

commit 85aba0b72f16ad16c55bae1f1c8fd5ca485a4882
Author: Amir Vadai <amirv-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
Date:   Sun Dec 20 13:23:28 2009 +0200

    sdp: fixed compilation warning
    
    Signed-off-by: Amir Vadai <amirv-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>

commit 84ebd9f8515b5eca679e5baa9ea460d85cc9ac09
Author: Amir Vadai <amirv-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
Date:   Sun Dec 20 11:45:37 2009 +0200

    sdp: ZCopy SrcAvail payload size limit fixed + fix ZCopy rx for small packets
    
    Signed-off-by: Amir Vadai <amirv-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>

commit d4273197d3002e3ba6001e8392acdc86cd73fdbc
Author: Ella Podvalny <ella-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
Date:   Sun Dec 20 10:22:27 2009 +0200

    kernel_addons: for fcoe SLES11
    
    Signed-off-by: Ella Podvalny <ella-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: bugs-2009-12-22.csv --]
[-- Type: text/csv; name="bugs-2009-12-22.csv", Size: 899 bytes --]

bug_id,"bug_severity","priority","op_sys","assigned_to","bug_status","resolution","short_short_desc"
1846,"major","P3","All","amirv@mellanox.co.il","RESOLVED","FIXED","Memory leak in ers/infiniband/ulp/sdp/sdp_rx.c"
1806,"normal","P3","Other","jackm@mellanox.co.il","RESOLVED","FIXED","IB_CQ_VECTOR_LEAST_ATTACHED not defined"
1618,"normal","P3","RHEL 5","orenk@dev.mellanox.co.il","RESOLVED","FIXED","ibdiagnet -r seg fault"
1849,"major","P1","Other","eli@mellanox.co.il","RESOLVED","FIXED","oops when connecting with RDMA-CM over a loopback"
1859,"normal","P2","All","eli@mellanox.co.il","RESOLVED","FIXED","IPOIB Can miss a change in dgid"
1823,"major","P2","SLES 11","vu@mellanox.com","RESOLVED","FIXED","OFED-1.5-rc2 opensm fails to discover SRP direct connect targets"
1802,"major","P1","SLES 11","eli@mellanox.co.il","CLOSED","FIXED","IB multicast attach cause kernel oops (from user/kernel)"

             reply	other threads:[~2009-12-22 16:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-22 16:16 Vladimir Sokolovsky [this message]
     [not found] ` <4B30F0E2.6010501-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2009-12-23 10:52   ` [ANNOUNCE] OFED 1.5 rc6 release is available Alexander Schmidt
2009-12-23 12:21     ` Vladimir Sokolovsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4B30F0E2.6010501@dev.mellanox.co.il \
    --to=vlad-ldsdmyg8hgv8yrgs2mwiifqbs+8scbdb@public.gmane.org \
    --cc=ewg-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.