diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2007-09-14 20:15:19 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-09-14 20:15:19 -0400 |
commit | 2a0c6c980d209827e5d69017fa736f107a744d1d (patch) | |
tree | dff735fe15844667577fd25bf87bae470d50306b /net/ipv4 | |
parent | cd562c9859f648d78224e9fc0dafa5a3d5000fdb (diff) |
[IPV4]: Just increment OutDatagrams once per a datagram.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/udp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 28355350fb62..69d4bd10f9c6 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
@@ -505,6 +505,8 @@ send: | |||
505 | out: | 505 | out: |
506 | up->len = 0; | 506 | up->len = 0; |
507 | up->pending = 0; | 507 | up->pending = 0; |
508 | if (!err) | ||
509 | UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, up->pcflag); | ||
508 | return err; | 510 | return err; |
509 | } | 511 | } |
510 | 512 | ||
@@ -693,10 +695,8 @@ out: | |||
693 | ip_rt_put(rt); | 695 | ip_rt_put(rt); |
694 | if (free) | 696 | if (free) |
695 | kfree(ipc.opt); | 697 | kfree(ipc.opt); |
696 | if (!err) { | 698 | if (!err) |
697 | UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, is_udplite); | ||
698 | return len; | 699 | return len; |
699 | } | ||
700 | /* | 700 | /* |
701 | * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting | 701 | * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting |
702 | * ENOBUFS might not be good (it's not tunable per se), but otherwise | 702 | * ENOBUFS might not be good (it's not tunable per se), but otherwise |