patch-2.4.6 linux/net/bridge/br_device.c
Next file: linux/net/bridge/br_forward.c
Previous file: linux/net/bluetooth/syms.c
Back to the patch index
Back to the overall index
- Lines: 30
- Date:
Mon Jun 11 19:15:27 2001
- Orig file:
v2.4.5/linux/net/bridge/br_device.c
- Orig date:
Thu Mar 2 11:41:11 2000
diff -u --recursive --new-file v2.4.5/linux/net/bridge/br_device.c linux/net/bridge/br_device.c
@@ -5,7 +5,7 @@
* Authors:
* Lennert Buytenhek <buytenh@gnu.org>
*
- * $Id: br_device.c,v 1.3 2000/03/01 02:58:09 davem Exp $
+ * $Id: br_device.c,v 1.4 2001/06/01 09:28:28 davem Exp $
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -56,17 +56,17 @@
dest = skb->data;
if (dest[0] & 1) {
- br_flood(br, skb, 0);
+ br_flood_deliver(br, skb, 0);
return 0;
}
if ((dst = br_fdb_get(br, dest)) != NULL) {
- br_forward(dst->dst, skb);
+ br_deliver(dst->dst, skb);
br_fdb_put(dst);
return 0;
}
- br_flood(br, skb, 0);
+ br_flood_deliver(br, skb, 0);
return 0;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)