diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2008-07-24 19:46:44 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-01 23:31:33 +0400 |
commit | f8e79ddd31c3615ddca26b9a469c44a7adbd4e13 (patch) | |
tree | befabd77386f496a3a5049bace1d335fcd8f8148 /net/mac80211/util.c | |
parent | dc1968e7b7862bcd2d358c1be6119c011992bdd2 (diff) | |
download | linux-f8e79ddd31c3615ddca26b9a469c44a7adbd4e13.tar.xz |
mac80211: fix fragmentation kludge
This patch make mac80211 transmit correctly fragmented packet after
queue was stopped
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r-- | net/mac80211/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 19f85e1b3695..0d463c80c404 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -361,6 +361,7 @@ void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue) struct ieee80211_local *local = hw_to_local(hw); if (test_bit(queue, local->queues_pending)) { + set_bit(queue, local->queues_pending_run); tasklet_schedule(&local->tx_pending_tasklet); } else { netif_wake_subqueue(local->mdev, queue); |