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

Adrian Chadd adrian at FreeBSD.org
Sat Aug 27 06:54:08 UTC 2011


Author: adrian
Date: Sat Aug 27 06:54:08 2011
New Revision: 225208
URL: http://svn.freebsd.org/changeset/base/225208

Log:
  oops, ath_tx_default_comp() wasn't being called when a non-ucast packet TX
  completed.

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

Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c
==============================================================================
--- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c	Sat Aug 27 06:30:01 2011	(r225207)
+++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c	Sat Aug 27 06:54:08 2011	(r225208)
@@ -4420,8 +4420,8 @@ ath_tx_processq(struct ath_softc *sc, st
 				     bf->bf_state.bfs_rc, ts,
 				    bf->bf_state.bfs_pktlen, 1,
 				    (ts->ts_status == 0 ? 0 : 1));
-				ath_tx_default_comp(sc, bf, 0);
 			}
+			ath_tx_default_comp(sc, bf, 0);
 		} else
 			bf->bf_comp(sc, bf, 0);
 	}


More information about the svn-src-user mailing list