mirror of
https://github.com/adulau/aha.git
synced 2025-01-02 14:13:18 +00:00
[IPV6]: 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>
This commit is contained in:
parent
3ef9d943d2
commit
cd562c9859
1 changed files with 3 additions and 3 deletions
|
@ -555,6 +555,8 @@ static int udp_v6_push_pending_frames(struct sock *sk)
|
||||||
out:
|
out:
|
||||||
up->len = 0;
|
up->len = 0;
|
||||||
up->pending = 0;
|
up->pending = 0;
|
||||||
|
if (!err)
|
||||||
|
UDP6_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, up->pcflag);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -823,10 +825,8 @@ do_append_data:
|
||||||
release_sock(sk);
|
release_sock(sk);
|
||||||
out:
|
out:
|
||||||
fl6_sock_release(flowlabel);
|
fl6_sock_release(flowlabel);
|
||||||
if (!err) {
|
if (!err)
|
||||||
UDP6_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, is_udplite);
|
|
||||||
return len;
|
return len;
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
* ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
|
* ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
|
||||||
* ENOBUFS might not be good (it's not tunable per se), but otherwise
|
* ENOBUFS might not be good (it's not tunable per se), but otherwise
|
||||||
|
|
Loading…
Reference in a new issue