summaryrefslogtreecommitdiffstats
path: root/sys/net/if_bridgevar.h
diff options
context:
space:
mode:
authorthompsa <thompsa@FreeBSD.org>2005-07-06 01:24:45 +0000
committerthompsa <thompsa@FreeBSD.org>2005-07-06 01:24:45 +0000
commit23f56c61a96992c32ea50b6322160e084052f565 (patch)
treecb9a365f71f710f2509cd4083fa223da565b3f3d /sys/net/if_bridgevar.h
parent5e71112509f619704ade66a8c8429cb90bfff811 (diff)
downloadFreeBSD-src-23f56c61a96992c32ea50b6322160e084052f565.zip
FreeBSD-src-23f56c61a96992c32ea50b6322160e084052f565.tar.gz
- Previously when broadcasting to N number of interfaces we would run pfil
hooks for each outgoing interface but also run pfil hooks _N times_ on the bridge interface. This is changed so pfil hooks are run once for the bridge interface (bridge0) and then only on the outgoing interfaces in the broadcast loop. - Simplify bridge_enqueue() by moving bridge_pfil() to the callers. - Check (inet6_pfil_hook.ph_busy_count >= 0), it may be possible to have a packet filter hooked for only ipv6 but we were only checking if ipv4 hooks were busy. - Minor optimisation for null mbuf check after bridge_pfil(), move it into the if-block as it couldnt possibly be null outside. Prodded by: mlaier Approved by: re (scottl), mlaier (mentor)
Diffstat (limited to 'sys/net/if_bridgevar.h')
-rw-r--r--sys/net/if_bridgevar.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/if_bridgevar.h b/sys/net/if_bridgevar.h
index 1bc948b..2cd7704 100644
--- a/sys/net/if_bridgevar.h
+++ b/sys/net/if_bridgevar.h
@@ -352,7 +352,6 @@ void bstp_linkstate(struct ifnet *, int);
void bstp_stop(struct bridge_softc *);
struct mbuf *bstp_input(struct ifnet *, struct mbuf *);
-void bridge_enqueue(struct bridge_softc *, struct ifnet *, struct mbuf *,
- int);
+void bridge_enqueue(struct bridge_softc *, struct ifnet *, struct mbuf *);
#endif /* _KERNEL */
OpenPOWER on IntegriCloud