svn commit: r225655 - user/adrian/if_ath_tx/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Mon Sep 19 04:06:56 UTC 2011


Author: adrian
Date: Mon Sep 19 04:06:56 2011
New Revision: 225655
URL: http://svn.freebsd.org/changeset/base/225655

Log:
  Flip on cleanup when disabling AMPDU.

Modified:
  user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c

Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c
==============================================================================
--- user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c	Mon Sep 19 00:46:49 2011	(r225654)
+++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c	Mon Sep 19 04:06:56 2011	(r225655)
@@ -2967,7 +2967,7 @@ ath_tx_aggr_comp_aggr(struct ath_softc *
 	/*
 	 * Punt cleanup to the relevant function, not our problem now
 	 */
-	if (0 && atid->cleanup_inprogress) {
+	if (atid->cleanup_inprogress) {
 		ATH_TXQ_UNLOCK(sc->sc_ac2q[atid->ac]);
 		ath_tx_comp_cleanup_aggr(sc, bf_first);
 		return;


More information about the svn-src-user mailing list