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

Adrian Chadd adrian at FreeBSD.org
Mon Feb 11 07:49:41 UTC 2013


Author: adrian
Date: Mon Feb 11 07:49:40 2013
New Revision: 246652
URL: http://svnweb.freebsd.org/changeset/base/246652

Log:
  Put this back into the ath taskqueue rather than the ath TX taskqueue.
  
  This now should mean all the entry points into the software TX
  scheduler are back in the same taskqueue.

Modified:
  head/sys/dev/ath/if_ath_misc.h

Modified: head/sys/dev/ath/if_ath_misc.h
==============================================================================
--- head/sys/dev/ath/if_ath_misc.h	Mon Feb 11 07:48:57 2013	(r246651)
+++ head/sys/dev/ath/if_ath_misc.h	Mon Feb 11 07:49:40 2013	(r246652)
@@ -137,7 +137,7 @@ static inline void
 ath_tx_swq_kick(struct ath_softc *sc)
 {
 
-	taskqueue_enqueue(sc->sc_tx_tq, &sc->sc_txqtask);
+	taskqueue_enqueue(sc->sc_tq, &sc->sc_txqtask);
 }
 
 #endif


More information about the svn-src-head mailing list