mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 07:21:54 +02:00
8349d8219a
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18415 3c298f89-4303-0410-b956-a3cf2f4a3e73
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) {
|