1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-08 14:27:40 +03:00

mac80211: increase minstrel_ht precision by properly using a-mpdu frame stats

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20034 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2010-03-07 16:29:37 +00:00
parent 31464a4e44
commit fa28364d93

View File

@ -68,7 +68,7 @@
--- /dev/null
+++ b/net/mac80211/rc80211_minstrel_ht.c
@@ -0,0 +1,825 @@
@@ -0,0 +1,824 @@
+/*
+ * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
+ *
@ -463,11 +463,10 @@
+ group = minstrel_ht_get_group_idx(&ar[i]);
+ rate = &mi->groups[group].rates[ar[i].idx % 8];
+
+ if (last && (info->flags & IEEE80211_TX_STAT_ACK) &&
+ info->status.ampdu_len == info->status.ampdu_ack_len)
+ rate->success++;
+ if (last && (info->flags & IEEE80211_TX_STAT_ACK))
+ rate->success += info->status.ampdu_ack_len;
+
+ rate->attempts += ar[i].count;
+ rate->attempts += ar[i].count * info->status.ampdu_len;
+ }
+
+