mirror of https://github.com/hak5/openwrt.git
15 lines
415 B
Diff
15 lines
415 B
Diff
--- a/net/mac80211/main.c
|
|
+++ b/net/mac80211/main.c
|
|
@@ -587,6 +587,11 @@ void ieee80211_tx_status(struct ieee8021
|
|
if (!netif_running(sdata->dev))
|
|
continue;
|
|
|
|
+ if ((sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) &&
|
|
+ !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
|
|
+ (type == IEEE80211_FTYPE_DATA))
|
|
+ continue;
|
|
+
|
|
if (prev_dev) {
|
|
skb2 = skb_clone(skb, GFP_ATOMIC);
|
|
if (skb2) {
|