tcp: add tcpi_segs_in and tcpi_segs_out to tcp_info
authorMarcelo Ricardo Leitner <mleitner@redhat.com>
Wed, 20 May 2015 23:35:41 +0000 (16:35 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 22 May 2015 03:25:21 +0000 (23:25 -0400)
commit2efd055c53c06b7e89c167c98069bab9afce7e59
tree4930a37c5ae972395c0945d6b786ad1e1fd07c0e
parent48ed7b26faa758e6612cd1fb11c07f25cd54f771
tcp: add tcpi_segs_in and tcpi_segs_out to tcp_info

This patch tracks the total number of inbound and outbound segments on a
TCP socket. One may use this number to have an idea on connection
quality when compared against the retransmissions.

RFC4898 named these : tcpEStatsPerfSegsIn and tcpEStatsPerfSegsOut

These are a 32bit field each and can be fetched both from TCP_INFO
getsockopt() if one has a handle on a TCP socket, or from inet_diag
netlink facility (iproute2/ss patch will follow)

Note that tp->segs_out was placed near tp->snd_nxt for good data
locality and minimal performance impact, while tp->segs_in was placed
near tp->bytes_received for the same reason.

Join work with Eric Dumazet.

Note that received SYN are accounted on the listener, but sent SYNACK
are not accounted.

Signed-off-by: Marcelo Ricardo Leitner <mleitner@redhat.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/tcp.h
include/uapi/linux/tcp.h
net/ipv4/tcp.c
net/ipv4/tcp_ipv4.c
net/ipv4/tcp_minisocks.c
net/ipv4/tcp_output.c
net/ipv6/tcp_ipv6.c