diff options
Diffstat (limited to 'sys/net/trunklacp.h')
-rw-r--r-- | sys/net/trunklacp.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/net/trunklacp.h b/sys/net/trunklacp.h index d9206602076..19618cf1d4b 100644 --- a/sys/net/trunklacp.h +++ b/sys/net/trunklacp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: trunklacp.h,v 1.3 2008/10/12 19:03:12 mpf Exp $ */ +/* $OpenBSD: trunklacp.h,v 1.4 2008/11/08 01:00:01 mpf Exp $ */ /* $NetBSD: ieee8023ad_impl.h,v 1.2 2005/12/10 23:21:39 elad Exp $ */ /* @@ -125,7 +125,6 @@ struct lacp_collectorinfo { } __packed; struct lacpdu { - struct ether_header ldu_eh; struct slowprothdr ldu_sph; struct tlvhdr ldu_tlv_actor; @@ -149,7 +148,6 @@ struct lacp_markerinfo { } __packed; struct markerdu { - struct ether_header mdu_eh; struct slowprothdr mdu_sph; struct tlvhdr mdu_tlv; @@ -257,7 +255,8 @@ struct lacp_softc { #define LACP_UNLOCK(_lsc) mtx_unlock(&(_lsc)->lsc_mtx) #define LACP_LOCK_ASSERT(_lsc) mtx_assert(&(_lsc)->lsc_mtx, MA_OWNED) -struct mbuf *lacp_input(struct trunk_port *, struct mbuf *); +struct mbuf *lacp_input(struct trunk_port *, + struct ether_header *, struct mbuf *); struct trunk_port *lacp_select_tx_port(struct trunk_softc *, struct mbuf *); int lacp_attach(struct trunk_softc *); int lacp_detach(struct trunk_softc *); |