From: Alexander Aring <alex.aring@gmail.com>
Date: Mon, 27 Oct 2014 16:13:37 +0000 (+0100)
Subject: mac802154: rx: add monitor pkt_type information
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c9ca6401405ea0c197ab7c8bcab2b82b26678145;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

mac802154: rx: add monitor pkt_type information

This patch adds a PACKET_OTHERHOST setting when a monitor interface
receives a skb. All receiving skb's to the monitor interface should
be PACKET_OTHERHOST.

Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
---

diff --git a/net/mac802154/rx.c b/net/mac802154/rx.c
index 14eecace1859..f7f09b46faa4 100644
--- a/net/mac802154/rx.c
+++ b/net/mac802154/rx.c
@@ -228,6 +228,7 @@ mac802154_monitors_rx(struct ieee802154_local *local, struct sk_buff *skb)
 	u8 *data;
 
 	skb->ip_summed = CHECKSUM_UNNECESSARY;
+	skb->pkt_type = PACKET_OTHERHOST;
 	skb->protocol = htons(ETH_P_IEEE802154);
 
 	rcu_read_lock();