From 13d85d438269de7378ac3b0d98f1db3273d76154 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Tue, 9 Mar 2010 00:52:16 +0000 Subject: [PATCH] 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(-) diff --git a/sys/net/if_lagg.c b/sys/net/if_lagg.c index 4728780d91be..cb146015fa72 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);