nexmon – Rev 1

Subversion Repositories:
Rev:
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index 345d6ff..20c604d 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -278,6 +278,15 @@ static ieee80211_tx_result
 ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
 {
        struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
+       struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
+
+       /*
+        * don't touch sequence numbers on raw monitor interfaces
+        */
+       if (unlikely((info->flags & IEEE80211_TX_CTL_INJECTED) &&
+          (tx->sdata->vif.type == IEEE80211_IF_TYPE_MNTR) &&
+          !(tx->sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)))
+               return TX_CONTINUE;
 
        if (ieee80211_hdrlen(hdr->frame_control) >= 24)
                ieee80211_include_sequence(tx->sdata, hdr);


Generated by GNU Enscript 1.6.5.90.