Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH] wl12xx: set the actual tid instead of the ac
@ 2011-03-16 21:03 Eliad Peller
  2011-03-17  5:38 ` Juuso Oikarinen
  2011-03-21 14:24 ` Luciano Coelho
  0 siblings, 2 replies; 6+ messages in thread
From: Eliad Peller @ 2011-03-16 21:03 UTC (permalink / raw)
  To: Luciano Coelho; +Cc: linux-wireless

When passing a tx frame, the driver incorrectly set desc->tid
with the ac instead of the actual tid.

It has some serious implications when using 802.11n + QoS,
as the fw starts a BlockAck with the wrong tid (which finally
cause beacon loss and disconnection / some fw crash)

Fix it by using the actual tid stored in skb->priority.

Reported-by: Shahar Levi <shahar_levi@ti.com>
Signed-off-by: Eliad Peller <eliad@wizery.com>
---
 drivers/net/wireless/wl12xx/tx.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wireless/wl12xx/tx.c b/drivers/net/wireless/wl12xx/tx.c
index 5e9ef7d..4bb3d99 100644
--- a/drivers/net/wireless/wl12xx/tx.c
+++ b/drivers/net/wireless/wl12xx/tx.c
@@ -205,9 +205,9 @@ static void wl1271_tx_fill_hdr(struct wl1271 *wl, struct sk_buff *skb,
 	/* configure the tx attributes */
 	tx_attr = wl->session_counter << TX_HW_ATTR_OFST_SESSION_COUNTER;
 
-	/* queue (we use same identifiers for tid's and ac's */
+	/* queue */
 	ac = wl1271_tx_get_queue(skb_get_queue_mapping(skb));
-	desc->tid = ac;
+	desc->tid = skb->priority;
 
 	if (wl->bss_type != BSS_TYPE_AP_BSS) {
 		desc->aid = hlid;
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-03-21 14:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-16 21:03 [PATCH] wl12xx: set the actual tid instead of the ac Eliad Peller
2011-03-17  5:38 ` Juuso Oikarinen
2011-03-21  7:54   ` Eliad Peller
2011-03-21  7:59     ` Juuso Oikarinen
2011-03-21  8:49       ` Juuso Oikarinen
2011-03-21 14:24 ` Luciano Coelho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox