Deleted Added
full compact
30c30
< * $FreeBSD: head/sys/net/if_ethersubr.c 167816 2007-03-22 19:08:39Z bms $
---
> * $FreeBSD: head/sys/net/if_ethersubr.c 168561 2007-04-10 00:27:25Z thompsa $
115a116,118
> /* if_trunk(4) support */
> struct mbuf *(*trunk_input_p)(struct ifnet *, struct mbuf *);
>
604a608,618
> /* Handle input from a trunk(4) port */
> if (ifp->if_type == IFT_IEEE8023ADLAG) {
> KASSERT(trunk_input_p != NULL,
> ("%s: if_trunk not loaded!", __func__));
> m = (*trunk_input_p)(ifp, m);
> if (m != NULL)
> ifp = m->m_pkthdr.rcvif;
> else
> return;
> }
>