diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-10-29 16:34:40 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-10-29 18:07:46 -0400 |
commit | 18460672e0651705ca557c94a369003553c3f9d6 (patch) | |
tree | 74741bfab5276506480c96ccf3500818d274cdc5 | |
parent | 21fdf0a1c10719f6edbb5961f5b076f5575d4bce (diff) |
mac802154: rx: add rx stats incrementation
This patch adds rx stats incrementation when the monitor interface
recevied a frame.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | net/mac802154/rx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/mac802154/rx.c b/net/mac802154/rx.c index 7669cdbba526..6ba2769f5fb4 100644 --- a/net/mac802154/rx.c +++ b/net/mac802154/rx.c | |||
@@ -241,6 +241,9 @@ ieee802154_monitors_rx(struct ieee802154_local *local, struct sk_buff *skb) | |||
241 | skb2->dev = sdata->dev; | 241 | skb2->dev = sdata->dev; |
242 | 242 | ||
243 | ieee802154_deliver_skb(skb2); | 243 | ieee802154_deliver_skb(skb2); |
244 | |||
245 | sdata->dev->stats.rx_packets++; | ||
246 | sdata->dev->stats.rx_bytes += skb->len; | ||
244 | } | 247 | } |
245 | } | 248 | } |
246 | 249 | ||