commit 504565a760085ed9f2fef9e326cf98871be0c2ca Author: Jiri Slaby Date: Thu Jul 12 18:25:43 2007 +0200 div long retries by 6 diff --git a/ath/if_ath_pci.c b/ath/if_ath_pci.c index 7eb8d87..90deebb 100644 --- a/ath/if_ath_pci.c +++ b/ath/if_ath_pci.c @@ -178,7 +178,7 @@ static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq) txs.control = bf->ctl; txs.retry_count = ds->ds_txstat.ts_shortretry + - ds->ds_txstat.ts_longretry; + ds->ds_txstat.ts_longretry / 6; if (ds->ds_txstat.ts_status) { if (ds->ds_txstat.ts_status & AR5K_TXERR_XRETRY) { txs.excessive_retries = 1;