summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2008-05-23 18:13:49 +0200
committerJohn W. Linville <linville@tuxdriver.com>2008-05-28 16:43:44 -0400
commit2088d4174e4292aef892bb7095fc3c3ea5bd117c (patch)
treeb120e0d720a70a4640ff2f84e2f523ea81660068 /drivers
parent0f3e63a55b1a7b695a79bf3eec2ff5ab6b336037 (diff)
downloadop-kernel-dev-2088d4174e4292aef892bb7095fc3c3ea5bd117c.zip
op-kernel-dev-2088d4174e4292aef892bb7095fc3c3ea5bd117c.tar.gz
rt2x00: Don't count retries as failure
Link quality estimation became quite low for all rt2x00 drivers because the number of retries it took to send the frame were counted as failure. This does not correspond to the legacy driver link quality calculation, by not counting it we will send somewhat more optimistic values to mac80211. Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c
index b22c027..e0767f0 100644
--- a/drivers/net/wireless/rt2x00/rt2x00dev.c
+++ b/drivers/net/wireless/rt2x00/rt2x00dev.c
@@ -507,7 +507,7 @@ void rt2x00lib_txdone(struct queue_entry *entry,
* Update TX statistics.
*/
rt2x00dev->link.qual.tx_success += success;
- rt2x00dev->link.qual.tx_failed += txdesc->retry + fail;
+ rt2x00dev->link.qual.tx_failed += fail;
/*
* Initialize TX status
OpenPOWER on IntegriCloud