[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>
This commit is contained in:
parent
cd562c9859
commit
2a0c6c980d
|
@ -505,6 +505,8 @@ send:
|
||||||
out:
|
out:
|
||||||
up->len = 0;
|
up->len = 0;
|
||||||
up->pending = 0;
|
up->pending = 0;
|
||||||
|
if (!err)
|
||||||
|
UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, up->pcflag);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -693,10 +695,8 @@ out:
|
||||||
ip_rt_put(rt);
|
ip_rt_put(rt);
|
||||||
if (free)
|
if (free)
|
||||||
kfree(ipc.opt);
|
kfree(ipc.opt);
|
||||||
if (!err) {
|
if (!err)
|
||||||
UDP_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 New Issue