[openib-general] [PATCH][IPOIB] bring interface down panic

Shirley Ma xma at us.ibm.com
Tue Feb 22 10:31:01 PST 2005


list_for_each_entry() should be list_for_each_entry_safe() in 
ipoib_mcast_dev_flush(). Here is the patch. Please review it.

Signed-off-by: Shirley Ma <xma at us.ibm.com>

diff -urpN infiniband/ulp/ipoib/ipoib_multicast.c 
infiniband-down/ulp/ipoib/ipoib_multicast.c
--- infiniband/ulp/ipoib/ipoib_multicast.c      2005-02-04 
16:05:13.000000000 -0800
+++ infiniband-down/ulp/ipoib/ipoib_multicast.c 2005-02-16 
15:49:42.000000000 -0800
@@ -790,7 +790,7 @@ void ipoib_mcast_dev_flush(struct net_de
 
        spin_unlock_irqrestore(&priv->lock, flags);
 
-       list_for_each_entry(mcast, &remove_list, list) {
+       list_for_each_entry_safe(mcast, tmcast, &remove_list, list) {
                ipoib_mcast_leave(dev, mcast);
                ipoib_mcast_free(mcast);
        }



Thanks
Shirley Ma
IBM Linux Technology Center
15300 SW Koll Parkway
Beaverton, OR 97006-6063
Phone(Fax): (503) 578-7638

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openfabrics.org/pipermail/general/attachments/20050222/4aa8e352/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: infiniband-down.patch
Type: application/octet-stream
Size: 549 bytes
Desc: not available
URL: <http://lists.openfabrics.org/pipermail/general/attachments/20050222/4aa8e352/attachment.obj>


More information about the general mailing list