Remove the check for IFF_DRV_OACTIVE right before adding a port into lagg

interface.  The check itself seems to be coming from OpenBSD but does not
seem to be useful for our code.

Discussed with:	thomasa
MFC after:	1 month
This commit is contained in:
delphij 2010-03-09 00:52:16 +00:00
parent abd91545cc
commit fe5f1f57b8

View File

@ -484,10 +484,6 @@ lagg_port_create(struct lagg_softc *sc, struct ifnet *ifp)
if (sc->sc_count >= LAGG_MAX_PORTS)
return (ENOSPC);
/* New lagg port has to be in an idle state */
if (ifp->if_drv_flags & IFF_DRV_OACTIVE)
return (EBUSY);
/* Check if port has already been associated to a lagg */
if (ifp->if_lagg != NULL)
return (EBUSY);