diff options
author | alex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com> | 2012-06-25 23:24:54 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-26 21:06:33 -0700 |
commit | 72fd5a8b75fb9962295a8c1338e13a4b1536714a (patch) | |
tree | 825c54a25b4662d885515961abe54c5fa953759c /net/mac802154 | |
parent | 7b8e19b67c1b171a04f6bd2f973d0b38cb496bf6 (diff) | |
download | linux-3.10-72fd5a8b75fb9962295a8c1338e13a4b1536714a.tar.gz linux-3.10-72fd5a8b75fb9962295a8c1338e13a4b1536714a.tar.bz2 linux-3.10-72fd5a8b75fb9962295a8c1338e13a4b1536714a.zip |
mac802154: add monitor listener to TX datapath
Add monitor receive callback to the TX datapath to catch all the
data sent to transceivers.
Signed-off-by: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac802154')
-rw-r--r-- | net/mac802154/tx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac802154/tx.c b/net/mac802154/tx.c index 8781d8f904d..86891153dcb 100644 --- a/net/mac802154/tx.c +++ b/net/mac802154/tx.c @@ -87,6 +87,8 @@ netdev_tx_t mac802154_tx(struct mac802154_priv *priv, struct sk_buff *skb, WARN_ON(1); return NETDEV_TX_OK; + mac802154_monitors_rx(mac802154_to_priv(&priv->hw), skb); + if (!(priv->hw.flags & IEEE802154_HW_OMIT_CKSUM)) { u16 crc = crc_ccitt(0, skb->data, skb->len); u8 *data = skb_put(skb, 2); |