Date: Sat, 27 Aug 2011 06:54:08 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r225208 - user/adrian/if_ath_tx/sys/dev/ath Message-ID: <201108270654.p7R6s8oe088612@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201108270654.p7R6s8oe088612>