diff options
author | James M Leddy <james.leddy@redhat.com> | 2014-06-25 17:38:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-06-27 00:20:55 -0700 |
commit | 3e215c8d1b6b772d107f1811b5ee8eae7a046fb4 (patch) | |
tree | a2777ecdcc0a7bd6206ccda142475f3111217219 /net/ipv6/udp.c | |
parent | 73413ffac3b713231dac466bca216f970042c5e5 (diff) | |
download | op-kernel-dev-3e215c8d1b6b772d107f1811b5ee8eae7a046fb4.zip op-kernel-dev-3e215c8d1b6b772d107f1811b5ee8eae7a046fb4.tar.gz |
udp: Add MIB counters for rcvbuferrors
Add MIB counters for rcvbuferrors in UDP to help diagnose problems.
Signed-off-by: James M Leddy <james.leddy@redhat.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 95c8347..7092ff7 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -674,8 +674,11 @@ int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) goto csum_error; } - if (sk_rcvqueues_full(sk, skb, sk->sk_rcvbuf)) + if (sk_rcvqueues_full(sk, skb, sk->sk_rcvbuf)) { + UDP6_INC_STATS_BH(sock_net(sk), + UDP_MIB_RCVBUFERRORS, is_udplite); goto drop; + } skb_dst_drop(skb); @@ -690,6 +693,7 @@ int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) bh_unlock_sock(sk); return rc; + csum_error: UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite); drop: |