diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-05-23 18:13:49 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-28 16:43:44 -0400 |
commit | 2088d4174e4292aef892bb7095fc3c3ea5bd117c (patch) | |
tree | b120e0d720a70a4640ff2f84e2f523ea81660068 | |
parent | 0f3e63a55b1a7b695a79bf3eec2ff5ab6b336037 (diff) | |
download | linux-stable-2088d4174e4292aef892bb7095fc3c3ea5bd117c.tar.gz linux-stable-2088d4174e4292aef892bb7095fc3c3ea5bd117c.tar.bz2 linux-stable-2088d4174e4292aef892bb7095fc3c3ea5bd117c.zip |
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>
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c index b22c02737185..e0767f0cb3d4 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 |