mac80211: properly free TX skbs when monitor TX fails
We need to free all skbs here, not just the one we peeked from the list. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
86c7ec9eb1
commit
63b4d8b373
|
@ -1431,7 +1431,7 @@ static bool __ieee80211_tx(struct ieee80211_local *local,
|
||||||
info->hw_queue =
|
info->hw_queue =
|
||||||
vif->hw_queue[skb_get_queue_mapping(skb)];
|
vif->hw_queue[skb_get_queue_mapping(skb)];
|
||||||
} else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
|
} else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
|
||||||
dev_kfree_skb(skb);
|
ieee80211_purge_tx_queue(&local->hw, skbs);
|
||||||
return true;
|
return true;
|
||||||
} else
|
} else
|
||||||
vif = NULL;
|
vif = NULL;
|
||||||
|
|
Loading…
Reference in New Issue