From: Alexander Aring Date: Wed, 2 Sep 2015 12:21:30 +0000 (+0200) Subject: ieee802154: 6lowpan: remove packet type to host X-Git-Tag: KARO-TX6UL-2015-11-03~90^2~277^2~24 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0c4349687fb6de660b24d3498d12e068f0320425;p=karo-tx-linux.git ieee802154: 6lowpan: remove packet type to host This patch remove the packet_type to host and leave the mac pkt_type. By running 'grep -r "pkt_type" net/ipv6', the IPv6 stack will evaluate this value for PACKET_BROADCAST. Instead of overwriting this value we will leave the mac value there which is broadcasts if the mac frame was a broadcast frame. Reviewed-by: Stefan Schmidt Signed-off-by: Alexander Aring Signed-off-by: Marcel Holtmann --- diff --git a/net/ieee802154/6lowpan/rx.c b/net/ieee802154/6lowpan/rx.c index f7eb091203a8..856052bf230b 100644 --- a/net/ieee802154/6lowpan/rx.c +++ b/net/ieee802154/6lowpan/rx.c @@ -29,7 +29,6 @@ static int lowpan_give_skb_to_device(struct sk_buff *skb) { skb->protocol = htons(ETH_P_IPV6); - skb->pkt_type = PACKET_HOST; return netif_rx(skb); }