svn commit: r185481 - head/sys/dev/ath

Sam Leffler sam at FreeBSD.org
Sun Nov 30 10:56:41 PST 2008


Author: sam
Date: Sun Nov 30 18:56:41 2008
New Revision: 185481
URL: http://svn.freebsd.org/changeset/base/185481

Log:
  sync w/ p4 branch

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Sun Nov 30 18:34:27 2008	(r185480)
+++ head/sys/dev/ath/if_ath.c	Sun Nov 30 18:56:41 2008	(r185481)
@@ -1266,7 +1266,8 @@ ath_fatal_proc(void *arg, int pending)
 static void
 ath_bmiss_vap(struct ieee80211vap *vap)
 {
-	struct ath_softc *sc = vap->iv_ic->ic_ifp->if_softc;
+	struct ifnet *ifp = vap->iv_ic->ic_ifp;
+	struct ath_softc *sc = ifp->if_softc;
 	u_int64_t lastrx = sc->sc_lastrx;
 	u_int64_t tsf = ath_hal_gettsf64(sc->sc_ah);
 	u_int bmisstimeout =


More information about the svn-src-head mailing list