mac80211: use netif_receive_skb in ieee80211_tx_status callpath
authorJohn W. Linville <linville@tuxdriver.com>
Thu, 24 Jun 2010 18:38:30 +0000 (14:38 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 28 Jun 2010 19:14:51 +0000 (15:14 -0400)
This avoids the extra queueing from calling netif_rx.

Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/status.c

index 34da679..10caec5 100644 (file)
@@ -377,7 +377,7 @@ void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
                                skb2 = skb_clone(skb, GFP_ATOMIC);
                                if (skb2) {
                                        skb2->dev = prev_dev;
-                                       netif_rx(skb2);
+                                       netif_receive_skb(skb2);
                                }
                        }
 
@@ -386,7 +386,7 @@ void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
        }
        if (prev_dev) {
                skb->dev = prev_dev;
-               netif_rx(skb);
+               netif_receive_skb(skb);
                skb = NULL;
        }
        rcu_read_unlock();