aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/udp.c
diff options
context:
space:
mode:
authorMartin Bligh <mbligh@google.com>2006-08-15 02:57:10 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 17:54:41 -0400
commit81aa646cc4df3779bcbf9d18cc2c0813ee9b3262 (patch)
tree7cf11f1e09f83b97a36012c187231504c4654199 /net/ipv4/udp.c
parent2aa7f36cdb332a32849afbf25fcbf35dce5b1940 (diff)
[IPV4]: add the UdpSndbufErrors and UdpRcvbufErrors MIBs
Signed-off-by: Martin Bligh <mbligh@google.com> Signed-off-by: Andrew Morton <akpm@osdl.org>
Diffstat (limited to 'net/ipv4/udp.c')
-rw-r--r--net/ipv4/udp.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index 87152510980c..514c1e9ae810 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -662,6 +662,16 @@ out:
662 UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS); 662 UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS);
663 return len; 663 return len;
664 } 664 }
665 /*
666 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
667 * ENOBUFS might not be good (it's not tunable per se), but otherwise
668 * we don't have a good statistic (IpOutDiscards but it can be too many
669 * things). We could add another new stat but at least for now that
670 * seems like overkill.
671 */
672 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
673 UDP_INC_STATS_USER(UDP_MIB_SNDBUFERRORS);
674 }
665 return err; 675 return err;
666 676
667do_confirm: 677do_confirm:
@@ -981,6 +991,7 @@ static int udp_encap_rcv(struct sock * sk, struct sk_buff *skb)
981static int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb) 991static int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
982{ 992{
983 struct udp_sock *up = udp_sk(sk); 993 struct udp_sock *up = udp_sk(sk);
994 int rc;
984 995
985 /* 996 /*
986 * Charge it to the socket, dropping if the queue is full. 997 * Charge it to the socket, dropping if the queue is full.
@@ -1027,7 +1038,10 @@ static int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
1027 skb->ip_summed = CHECKSUM_UNNECESSARY; 1038 skb->ip_summed = CHECKSUM_UNNECESSARY;
1028 } 1039 }
1029 1040
1030 if (sock_queue_rcv_skb(sk,skb)<0) { 1041 if ((rc = sock_queue_rcv_skb(sk,skb)) < 0) {
1042 /* Note that an ENOMEM error is charged twice */
1043 if (rc == -ENOMEM)
1044 UDP_INC_STATS_BH(UDP_MIB_RCVBUFERRORS);
1031 UDP_INC_STATS_BH(UDP_MIB_INERRORS); 1045 UDP_INC_STATS_BH(UDP_MIB_INERRORS);
1032 kfree_skb(skb); 1046 kfree_skb(skb);
1033 return -1; 1047 return -1;