]> Pileus Git - ~andy/linux/commitdiff
mac80211: exit cooked monitor RX early if there are none
authorJohannes Berg <johannes.berg@intel.com>
Fri, 21 Oct 2011 08:22:22 +0000 (10:22 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 8 Nov 2011 20:54:13 +0000 (15:54 -0500)
If there are no cooked monitor interfaces, there's
no point in building the radiotap RX header for the
frame and iterating the interface list.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/rx.c

index b867bd55de7aab4c9e622eaeff88da9c93671417..c74e542a26b02b6953d46ec33528c047a7ab17cf 100644 (file)
@@ -2489,6 +2489,10 @@ static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
                goto out_free_skb;
        rx->flags |= IEEE80211_RX_CMNTR;
 
+       /* If there are no cooked monitor interfaces, just free the SKB */
+       if (!local->cooked_mntrs)
+               goto out_free_skb;
+
        if (skb_headroom(skb) < sizeof(*rthdr) &&
            pskb_expand_head(skb, sizeof(*rthdr), 0, GFP_ATOMIC))
                goto out_free_skb;