From fe5f1f57b8fcac02898f1fa59b4c49c028009495 Mon Sep 17 00:00:00 2001 From: delphij Date: Tue, 9 Mar 2010 00:52:16 +0000 Subject: 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 --- sys/net/if_lagg.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'sys/net') diff --git a/sys/net/if_lagg.c b/sys/net/if_lagg.c index 4728780..cb14601 100644 --- a/sys/net/if_lagg.c +++ b/sys/net/if_lagg.c @@ -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); -- cgit v1.1