summaryrefslogtreecommitdiffstats
path: root/sys/dev/sf
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1999-07-25 05:16:05 +0000
committerwpaul <wpaul@FreeBSD.org>1999-07-25 05:16:05 +0000
commit13adfcc8d63dbe3e5853e7af60ec1795580fde7f (patch)
treeffd4cce58d4bca3b1f85152ea557cc5570bbd7ec /sys/dev/sf
parent97307ab479f01e32a804d2373409fa9d33e57b4a (diff)
downloadFreeBSD-src-13adfcc8d63dbe3e5853e7af60ec1795580fde7f.zip
FreeBSD-src-13adfcc8d63dbe3e5853e7af60ec1795580fde7f.tar.gz
Remember to clear the IFF_RUNNING and IFF_OACTIVE flags in sf_stop() and
sk_stop().
Diffstat (limited to 'sys/dev/sf')
-rw-r--r--sys/dev/sf/if_sf.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c
index 685d0f9..e4de7e6 100644
--- a/sys/dev/sf/if_sf.c
+++ b/sys/dev/sf/if_sf.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_sf.c,v 1.11 1999/07/24 21:13:38 wpaul Exp $
+ * $Id: if_sf.c,v 1.12 1999/07/25 05:10:18 wpaul Exp $
*/
/*
@@ -119,7 +119,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: if_sf.c,v 1.11 1999/07/24 21:13:38 wpaul Exp $";
+ "$Id: if_sf.c,v 1.12 1999/07/25 05:10:18 wpaul Exp $";
#endif
static struct sf_type sf_devs[] = {
@@ -1720,6 +1720,9 @@ static void sf_stop(sc)
struct sf_softc *sc;
{
int i;
+ struct ifnet *ifp;
+
+ ifp = &sc->arpcom.ac_if;
untimeout(sf_stats_update, sc, sc->sf_stat_ch);
@@ -1748,6 +1751,8 @@ static void sf_stop(sc)
}
}
+ ifp->if_flags &= ~(IFF_RUNNING|IFF_OACTIVE);
+
return;
}
OpenPOWER on IntegriCloud