From 13adfcc8d63dbe3e5853e7af60ec1795580fde7f Mon Sep 17 00:00:00 2001 From: wpaul Date: Sun, 25 Jul 1999 05:16:05 +0000 Subject: Remember to clear the IFF_RUNNING and IFF_OACTIVE flags in sf_stop() and sk_stop(). --- sys/pci/if_sk.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'sys/pci/if_sk.c') diff --git a/sys/pci/if_sk.c b/sys/pci/if_sk.c index 81db591..aee546f 100644 --- a/sys/pci/if_sk.c +++ b/sys/pci/if_sk.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $ + * $Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $ */ /* @@ -102,7 +102,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $"; + "$Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $"; #endif static struct sk_type sk_devs[] = { @@ -1928,8 +1928,10 @@ static void sk_stop(sc_if) { int i; struct sk_softc *sc; + struct ifnet *ifp; sc = sc_if->sk_softc; + ifp = &sc_if->arpcom.ac_if; /* Turn off various components of this interface. */ SK_IF_WRITE_2(sc_if, 0, SK_TXF1_MACCTL, SK_TXMACCTL_XMAC_RESET); @@ -1966,5 +1968,7 @@ static void sk_stop(sc_if) } } + ifp->if_flags &= ~(IFF_RUNNING|IFF_OACTIVE); + return; } -- cgit v1.1