summaryrefslogtreecommitdiff
path: root/net/mac802154
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-10-29 20:34:39 (GMT)
committerMarcel Holtmann <marcel@holtmann.org>2014-10-29 22:07:46 (GMT)
commit21fdf0a1c10719f6edbb5961f5b076f5575d4bce (patch)
tree2c091293b2ba69364640a1584255b61637b14ee6 /net/mac802154
parent1054ed81c4f5225d7a45fe5dec67430280bf3793 (diff)
downloadlinux-21fdf0a1c10719f6edbb5961f5b076f5575d4bce.tar.xz
mac802154: rx: use netif_receive_skb
This patch removes netif_rx_ni call. Instead we call netif_receive_skb, we can do that since commit c5c47e67bcd24638a059b1b5e9ec18c95f8634ca ("mac802154: rx: use tasklet instead workqueue"). Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154')
-rw-r--r--net/mac802154/rx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac802154/rx.c b/net/mac802154/rx.c
index f15c50b..7669cdb 100644
--- a/net/mac802154/rx.c
+++ b/net/mac802154/rx.c
@@ -240,7 +240,7 @@ ieee802154_monitors_rx(struct ieee802154_local *local, struct sk_buff *skb)
skb2 = skb_clone(skb, GFP_ATOMIC);
skb2->dev = sdata->dev;
- netif_rx_ni(skb2);
+ ieee802154_deliver_skb(skb2);
}
}