mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 20:02:50 +02:00
8194134c2b
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9835 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
786 B
Diff
24 lines
786 B
Diff
Index: trunk/ath_rate/minstrel/minstrel.c
|
|
===================================================================
|
|
--- trunk/ath_rate/minstrel/minstrel.c (revision 3065)
|
|
+++ trunk/ath_rate/minstrel/minstrel.c (working copy)
|
|
@@ -446,7 +446,6 @@
|
|
const struct ath_desc *ds = &bf->bf_desc[0];
|
|
int final_rate = 0;
|
|
int tries = 0;
|
|
- int ndx = -1;
|
|
int mrr;
|
|
int final_ndx;
|
|
int rate0, tries0, ndx0;
|
|
@@ -485,8 +484,8 @@
|
|
mrr = sc->sc_mrretry && !(ic->ic_flags & IEEE80211_F_USEPROT) && ENABLE_MRR;
|
|
|
|
if (!mrr) {
|
|
- if ((0 <= ndx) && (ndx < sn->num_rates)) {
|
|
- sn->rs_rateattempts[ndx]++; /* only one rate was used */
|
|
+ if ((0 <= final_ndx) && (final_ndx < sn->num_rates)) {
|
|
+ sn->rs_rateattempts[final_ndx] += tries; /* only one rate was used */
|
|
}
|
|
return;
|
|
}
|