diff options
author | Rami Rosen <ramirose@gmail.com> | 2008-04-13 23:59:13 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-13 23:59:13 -0700 |
commit | 0912ea38de61378c5c753aef78c12e2f95854313 (patch) | |
tree | fba14f973c7062a904f27fa47c45f81868be02f3 | |
parent | 0b18542b7f5379e052d2a3132be91185776e7ceb (diff) | |
download | linux-3.10-0912ea38de61378c5c753aef78c12e2f95854313.tar.gz linux-3.10-0912ea38de61378c5c753aef78c12e2f95854313.tar.bz2 linux-3.10-0912ea38de61378c5c753aef78c12e2f95854313.zip |
[IPV6] MROUTE: Add stats in multicast routing module method ip6_mr_forward().
This patches adds a call to increment IPSTATS_MIB_OUTFORWDATAGRAMS
when forwarding the packet in ip6_mr_forward() in the IPv6 multicast
routing module (net/ipv6/ip6mr.c).
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/ip6mr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index 6e2e3c957a3..c8c6e33d116 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c @@ -1354,7 +1354,7 @@ int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg) static inline int ip6mr_forward2_finish(struct sk_buff *skb) { - /* XXX stats */ + IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_OUTFORWDATAGRAMS); return dst_output(skb); } |