aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/work.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2011-10-04 12:27:10 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-10-11 16:41:08 -0400
commit28a1bcdb57d50f3038a255741ecc83e391e5282e (patch)
treedec9177c1756343a7ba27db929e189c3726f26f9 /net/mac80211/work.c
parentaf4dc88c56559c1ebf53628ddcc18dde23924e33 (diff)
mac80211: fix offchannel TX cookie matching
When I introduced in-kernel off-channel TX I introduced a bug -- the work can't be canceled again because the code clear the skb pointer. Fix this by keeping track separately of whether TX status has already been reported. Cc: stable@kernel.org [2.6.38+] Reported-by: Jouni Malinen <j@w1.fi> Tested-by: Jouni Malinen <j@w1.fi> Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/work.c')
-rw-r--r--net/mac80211/work.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/work.c b/net/mac80211/work.c
index af374fab1a1..94472eb34d7 100644
--- a/net/mac80211/work.c
+++ b/net/mac80211/work.c
@@ -577,7 +577,7 @@ ieee80211_offchannel_tx(struct ieee80211_work *wk)
577 /* 577 /*
578 * After this, offchan_tx.frame remains but now is no 578 * After this, offchan_tx.frame remains but now is no
579 * longer a valid pointer -- we still need it as the 579 * longer a valid pointer -- we still need it as the
580 * cookie for canceling this work. 580 * cookie for canceling this work/status matching.
581 */ 581 */
582 ieee80211_tx_skb(wk->sdata, wk->offchan_tx.frame); 582 ieee80211_tx_skb(wk->sdata, wk->offchan_tx.frame);
583 583