diff options
author | Eric Dumazet <edumazet@google.com> | 2016-04-27 16:44:37 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-27 22:48:24 -0400 |
commit | 98f619957ec2717fea09b398957e130e4bf4b30c (patch) | |
tree | f0317393f77c5fd8290561dccfbaf4e73a952380 /net/ipv4/ip_forward.c | |
parent | a16292a0f0e0cef40ed51685dfde12b3002959b5 (diff) | |
download | op-kernel-dev-98f619957ec2717fea09b398957e130e4bf4b30c.zip op-kernel-dev-98f619957ec2717fea09b398957e130e4bf4b30c.tar.gz |
net: rename IP_ADD_STATS_BH()
Rename IP_ADD_STATS_BH() to __IP_ADD_STATS()
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_forward.c')
-rw-r--r-- | net/ipv4/ip_forward.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_forward.c b/net/ipv4/ip_forward.c index 42fbd59..cbfb180 100644 --- a/net/ipv4/ip_forward.c +++ b/net/ipv4/ip_forward.c @@ -66,7 +66,7 @@ static int ip_forward_finish(struct net *net, struct sock *sk, struct sk_buff *s struct ip_options *opt = &(IPCB(skb)->opt); __IP_INC_STATS(net, IPSTATS_MIB_OUTFORWDATAGRAMS); - IP_ADD_STATS_BH(net, IPSTATS_MIB_OUTOCTETS, skb->len); + __IP_ADD_STATS(net, IPSTATS_MIB_OUTOCTETS, skb->len); if (unlikely(opt->optlen)) ip_forward_options(skb); |