Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21fdf0a1 authored by Alexander Aring's avatar Alexander Aring Committed by Marcel Holtmann
Browse files

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 c5c47e67
("mac802154: rx: use tasklet instead workqueue").

Signed-off-by: default avatarAlexander Aring <alex.aring@gmail.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 1054ed81
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -240,7 +240,7 @@ ieee802154_monitors_rx(struct ieee802154_local *local, struct sk_buff *skb)
		skb2 = skb_clone(skb, GFP_ATOMIC);
		skb2 = skb_clone(skb, GFP_ATOMIC);
		skb2->dev = sdata->dev;
		skb2->dev = sdata->dev;


		netif_rx_ni(skb2);
		ieee802154_deliver_skb(skb2);
	}
	}
}
}