aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac802154
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-10-27 12:13:37 -0400
committerMarcel Holtmann <marcel@holtmann.org>2014-10-27 13:07:44 -0400
commitc9ca6401405ea0c197ab7c8bcab2b82b26678145 (patch)
tree655c92c04df2b46aa071138ee188c3e184d0f9a9 /net/mac802154
parent75a46f0ee774894152d505de594616f9c4dd7ef5 (diff)
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>
Diffstat (limited to 'net/mac802154')
-rw-r--r--net/mac802154/rx.c1
1 files changed, 1 insertions, 0 deletions
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)
228 u8 *data; 228 u8 *data;
229 229
230 skb->ip_summed = CHECKSUM_UNNECESSARY; 230 skb->ip_summed = CHECKSUM_UNNECESSARY;
231 skb->pkt_type = PACKET_OTHERHOST;
231 skb->protocol = htons(ETH_P_IEEE802154); 232 skb->protocol = htons(ETH_P_IEEE802154);
232 233
233 rcu_read_lock(); 234 rcu_read_lock();