projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ef9d94
)
[IPV6]: Just increment OutDatagrams once per a datagram.
author
YOSHIFUJI Hideaki
<
[email protected]
>
Sat, 15 Sep 2007 00:15:01 +0000
(17:15 -0700)
committer
David S. Miller
<
[email protected]
>
Sat, 15 Sep 2007 00:15:01 +0000
(17:15 -0700)
Signed-off-by: YOSHIFUJI Hideaki <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/ipv6/udp.c
patch
|
blob
|
history
diff --git
a/net/ipv6/udp.c
b/net/ipv6/udp.c
index 4210951edb6e9f0d6b8d88d917d99dd34689c5db..c347f3e30e2e5ef1ccd3469f6f2ab804649402c4 100644
(file)
--- a/
net/ipv6/udp.c
+++ b/
net/ipv6/udp.c
@@
-555,6
+555,8
@@
static int udp_v6_push_pending_frames(struct sock *sk)
out:
up->len = 0;
up->pending = 0;
+ if (!err)
+ UDP6_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, up->pcflag);
return err;
}
@@
-823,10
+825,8
@@
do_append_data:
release_sock(sk);
out:
fl6_sock_release(flowlabel);
- if (!err) {
- UDP6_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, is_udplite);
+ if (!err)
return len;
- }
/*
* ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
* ENOBUFS might not be good (it's not tunable per se), but otherwise