diff options
author | adrian <adrian@FreeBSD.org> | 2011-11-08 21:55:40 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2011-11-08 21:55:40 +0000 |
commit | d69e09b56f50ca213912afc2bb6f6911041718d3 (patch) | |
tree | 760a14db2391f1be5902c673c5414cc7f46135fa /sys/dev/ath/if_ath.c | |
parent | 65d79f5f4ca64ada7267e395270309b6dc342ca8 (diff) | |
download | FreeBSD-src-d69e09b56f50ca213912afc2bb6f6911041718d3.zip FreeBSD-src-d69e09b56f50ca213912afc2bb6f6911041718d3.tar.gz |
Make sure TXEOL is set on default queues. Otherwise we don't get an
interrupt on the completion of a TX queue and this can cause TX
hangs / timeout.
Sponsored by: Hobnob, Inc.
Diffstat (limited to 'sys/dev/ath/if_ath.c')
-rw-r--r-- | sys/dev/ath/if_ath.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index ece4eba..ef3db94 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -4198,6 +4198,7 @@ ath_txq_update(struct ath_softc *sc, int ac) | HAL_TXQ_TXERRINT_ENABLE | HAL_TXQ_TXDESCINT_ENABLE | HAL_TXQ_TXURNINT_ENABLE + | HAL_TXQ_TXEOLINT_ENABLE ; qi.tqi_aifs = wmep->wmep_aifsn; qi.tqi_cwmin = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmin); |