summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-12-22 16:17:17 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-12-22 16:17:17 +0000
commite86049efe8542d787f7c363f90371f8902fc705e (patch)
treee8e9473e7160b2ed439be97ad35f34acf8cb086b /package
parentb427a55c85a5a34ddbcf9344579de90878713eee (diff)
downloadmaster-31e0f0ae-e86049efe8542d787f7c363f90371f8902fc705e.tar.gz
master-31e0f0ae-e86049efe8542d787f7c363f90371f8902fc705e.tar.bz2
master-31e0f0ae-e86049efe8542d787f7c363f90371f8902fc705e.zip
sync with madwifi changeset 3070
SVN-Revision: 9835
Diffstat (limited to 'package')
-rw-r--r--package/madwifi/patches/110-minstrel_counters.patch13
1 files changed, 7 insertions, 6 deletions
diff --git a/package/madwifi/patches/110-minstrel_counters.patch b/package/madwifi/patches/110-minstrel_counters.patch
index a3ed91a522..7e0b46b67a 100644
--- a/package/madwifi/patches/110-minstrel_counters.patch
+++ b/package/madwifi/patches/110-minstrel_counters.patch
@@ -1,7 +1,8 @@
-diff --exclude '*~' -uNr madwifi-dfs-r3053.orig/ath_rate/minstrel/minstrel.c madwifi-dfs-r3053/ath_rate/minstrel/minstrel.c
---- madwifi-dfs-r3053.orig/ath_rate/minstrel/minstrel.c 2007-12-21 13:34:23.000000000 +0000
-+++ madwifi-dfs-r3053/ath_rate/minstrel/minstrel.c 2007-12-21 14:29:07.000000000 +0000
-@@ -449,7 +449,6 @@
+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;
@@ -9,14 +10,14 @@ diff --exclude '*~' -uNr madwifi-dfs-r3053.orig/ath_rate/minstrel/minstrel.c mad
int mrr;
int final_ndx;
int rate0, tries0, ndx0;
-@@ -488,8 +487,8 @@
+@@ -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]++; /* only one rate was used */
++ sn->rs_rateattempts[final_ndx] += tries; /* only one rate was used */
}
return;
}