diff options
author | Arik Nemtsov <arik@wizery.com> | 2011-08-28 08:11:57 -0400 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-09-14 04:47:26 -0400 |
commit | 14623787abd1217f4c48f128fd4dc03e238265fe (patch) | |
tree | d01742cdd22b9c4ae46fd0965b201ebd133bfd5c | |
parent | 9487775c5b785d7c1e8182825c9ff9cf5e88149e (diff) |
wl12xx: don't queue a new dummy packet if one is already pending
The firmware only asks for one dummy packet at a time, but sometimes we
are unable to provide it before a FW timer expires. When this happens,
the FW will re-request the dummy packet. If a packet is still queued in
the driver queues, do nothing in this case.
This prevents spurious dummy packets from clogging up the VO AC.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
-rw-r--r-- | drivers/net/wireless/wl12xx/main.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c index f1fd9916e020..aeb4cc51bd3b 100644 --- a/drivers/net/wireless/wl12xx/main.c +++ b/drivers/net/wireless/wl12xx/main.c | |||
@@ -1540,7 +1540,13 @@ out: | |||
1540 | int wl1271_tx_dummy_packet(struct wl1271 *wl) | 1540 | int wl1271_tx_dummy_packet(struct wl1271 *wl) |
1541 | { | 1541 | { |
1542 | unsigned long flags; | 1542 | unsigned long flags; |
1543 | int q = wl1271_tx_get_queue(skb_get_queue_mapping(wl->dummy_packet)); | 1543 | int q; |
1544 | |||
1545 | /* no need to queue a new dummy packet if one is already pending */ | ||
1546 | if (test_bit(WL1271_FLAG_DUMMY_PACKET_PENDING, &wl->flags)) | ||
1547 | return 0; | ||
1548 | |||
1549 | q = wl1271_tx_get_queue(skb_get_queue_mapping(wl->dummy_packet)); | ||
1544 | 1550 | ||
1545 | spin_lock_irqsave(&wl->wl_lock, flags); | 1551 | spin_lock_irqsave(&wl->wl_lock, flags); |
1546 | set_bit(WL1271_FLAG_DUMMY_PACKET_PENDING, &wl->flags); | 1552 | set_bit(WL1271_FLAG_DUMMY_PACKET_PENDING, &wl->flags); |