summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSimon Vincent <simon.vincent@xsilon.com>2014-10-05 20:23:12 +0200
committerMarcel Holtmann <marcel@holtmann.org>2014-10-05 21:06:15 +0200
commita4c0475ac1eb67032e759327a40d8d4b2cf2b988 (patch)
tree290c01df515d221a95599fc974d0d4b492e5a967 /net
parentd26bb41aeec152bbc3d3c17765d7f63c0f8fb51c (diff)
ieee802154: 6lowpan: Drop PACKET_OTHERHOST skbs in 6lowpan
There is no point processing pkts which are PACKET_OTHERHOST in 6lowpan as they are discarded as soon as they reach the ipv6 layer. Therefore we should drop them in the 6lowpan layer. Signed-off-by: Simon Vincent <simon.vincent@xsilon.com> Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net')
-rw-r--r--net/ieee802154/6lowpan_rtnl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ieee802154/6lowpan_rtnl.c b/net/ieee802154/6lowpan_rtnl.c
index 44136297b673..56252ee157c9 100644
--- a/net/ieee802154/6lowpan_rtnl.c
+++ b/net/ieee802154/6lowpan_rtnl.c
@@ -515,6 +515,9 @@ static int lowpan_rcv(struct sk_buff *skb, struct net_device *dev,
if (!netif_running(dev))
goto drop_skb;
+ if (skb->pkt_type == PACKET_OTHERHOST)
+ goto drop_skb;
+
if (dev->type != ARPHRD_IEEE802154)
goto drop_skb;