mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Remove some code, dead from the day one.
This commit is contained in:
parent
e26b433edd
commit
e3d90506c4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=318907
@ -1773,7 +1773,6 @@ struct lagg_port *
|
||||
lagg_link_active(struct lagg_softc *sc, struct lagg_port *lp)
|
||||
{
|
||||
struct lagg_port *lp_next, *rval = NULL;
|
||||
// int new_link = LINK_STATE_DOWN;
|
||||
|
||||
/*
|
||||
* Search a port which reports an active link state.
|
||||
@ -1800,22 +1799,6 @@ lagg_link_active(struct lagg_softc *sc, struct lagg_port *lp)
|
||||
}
|
||||
|
||||
found:
|
||||
if (rval != NULL) {
|
||||
/*
|
||||
* The IEEE 802.1D standard assumes that a lagg with
|
||||
* multiple ports is always full duplex. This is valid
|
||||
* for load sharing laggs and if at least two links
|
||||
* are active. Unfortunately, checking the latter would
|
||||
* be too expensive at this point.
|
||||
XXX
|
||||
if ((sc->sc_capabilities & IFCAP_LAGG_FULLDUPLEX) &&
|
||||
(sc->sc_count > 1))
|
||||
new_link = LINK_STATE_FULL_DUPLEX;
|
||||
else
|
||||
new_link = rval->lp_link_state;
|
||||
*/
|
||||
}
|
||||
|
||||
return (rval);
|
||||
}
|
||||
|
||||
@ -1832,7 +1815,6 @@ lagg_enqueue(struct ifnet *ifp, struct mbuf *m)
|
||||
static void
|
||||
lagg_rr_attach(struct lagg_softc *sc)
|
||||
{
|
||||
sc->sc_capabilities = IFCAP_LAGG_FULLDUPLEX;
|
||||
sc->sc_seq = 0;
|
||||
sc->sc_bkt_count = sc->sc_bkt;
|
||||
}
|
||||
@ -2001,9 +1983,6 @@ lagg_lb_attach(struct lagg_softc *sc)
|
||||
struct lagg_lb *lb;
|
||||
|
||||
lb = malloc(sizeof(struct lagg_lb), M_DEVBUF, M_WAITOK | M_ZERO);
|
||||
|
||||
sc->sc_capabilities = IFCAP_LAGG_FULLDUPLEX;
|
||||
|
||||
lb->lb_key = m_ether_tcpip_hash_init();
|
||||
sc->sc_psc = lb;
|
||||
|
||||
|
@ -185,10 +185,6 @@ struct lagg_ifreq {
|
||||
|
||||
#define sc_ifflags sc_ifp->if_flags /* flags */
|
||||
#define sc_ifname sc_ifp->if_xname /* name */
|
||||
#define sc_capabilities sc_ifp->if_capabilities /* capabilities */
|
||||
|
||||
#define IFCAP_LAGG_MASK 0xffff0000 /* private capabilities */
|
||||
#define IFCAP_LAGG_FULLDUPLEX 0x00010000 /* full duplex with >1 ports */
|
||||
|
||||
/* Private data used by the loadbalancing protocol */
|
||||
struct lagg_lb {
|
||||
|
Loading…
Reference in New Issue
Block a user