]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
iwlwifi: mvm: clean up NO_PSDU case
authorJohannes Berg <johannes.berg@intel.com>
Mon, 10 Dec 2018 09:40:45 +0000 (10:40 +0100)
committerLuca Coelho <luciano.coelho@intel.com>
Thu, 14 Feb 2019 09:29:44 +0000 (11:29 +0200)
We now no longer have any special code in
iwl_mvm_pass_packet_to_mac80211(), so don't
need to pass NO_PSDU packets through it.
Stop doing so and clean up the code there.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c

index 957d99932e8b27dffc172bcf0767b8d684d825a6..557a0b5a08ac4648861d71d26dcb6eb1acbf40ca 100644 (file)
@@ -258,10 +258,7 @@ static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
                                            struct ieee80211_sta *sta,
                                            bool csi)
 {
-       struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
-
-       if (!(rx_status->flag & RX_FLAG_NO_PSDU) &&
-           iwl_mvm_check_pn(mvm, skb, queue, sta))
+       if (iwl_mvm_check_pn(mvm, skb, queue, sta))
                kfree_skb(skb);
        else
                ieee80211_rx_napi(mvm->hw, sta, skb, napi);
@@ -1800,7 +1797,7 @@ void iwl_mvm_rx_monitor_ndp(struct iwl_mvm *mvm, struct napi_struct *napi,
                rx_status->rate_idx = rate;
        }
 
-       iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb, queue, sta, false);
+       ieee80211_rx_napi(mvm->hw, sta, skb, napi);
 out:
        rcu_read_unlock();
 }