patch-2.4.22 linux-2.4.22/net/packet/af_packet.c
Next file: linux-2.4.22/net/rose/af_rose.c
Previous file: linux-2.4.22/net/netsyms.c
Back to the patch index
Back to the overall index
- Lines: 37
- Date:
2003-08-25 04:44:44.000000000 -0700
- Orig file:
linux-2.4.21/net/packet/af_packet.c
- Orig date:
2002-08-02 17:39:46.000000000 -0700
diff -urN linux-2.4.21/net/packet/af_packet.c linux-2.4.22/net/packet/af_packet.c
@@ -1378,8 +1378,13 @@
po = sk->protinfo.af_packet;
switch (msg) {
- case NETDEV_DOWN:
case NETDEV_UNREGISTER:
+#ifdef CONFIG_PACKET_MULTICAST
+ if (po->mclist)
+ packet_dev_mclist(dev, po->mclist, -1);
+ // fallthrough
+#endif
+ case NETDEV_DOWN:
if (dev->ifindex == po->ifindex) {
spin_lock(&po->bind_lock);
if (po->running) {
@@ -1396,10 +1401,6 @@
}
spin_unlock(&po->bind_lock);
}
-#ifdef CONFIG_PACKET_MULTICAST
- if (po->mclist)
- packet_dev_mclist(dev, po->mclist, -1);
-#endif
break;
case NETDEV_UP:
spin_lock(&po->bind_lock);
@@ -1409,10 +1410,6 @@
po->running = 1;
}
spin_unlock(&po->bind_lock);
-#ifdef CONFIG_PACKET_MULTICAST
- if (po->mclist)
- packet_dev_mclist(dev, po->mclist, +1);
-#endif
break;
}
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)