tcp: metrics: Handle v6/v4-mapped sockets in tcp-metrics
authorChristoph Paasch <christoph.paasch@uclouvain.be>
Wed, 22 Jan 2014 12:58:44 +0000 (13:58 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 23 Jan 2014 20:48:28 +0000 (12:48 -0800)
commit3ad88cf70af79e6f19c4f89dd85453ba4fdf425e
tree3717f53d734cecb7945638846f19477dad3ea8d0
parent5ae5e991ee6274cc269dabd536399146be038a0f
tcp: metrics: Handle v6/v4-mapped sockets in tcp-metrics

A socket may be v6/v4-mapped. In that case sk->sk_family is AF_INET6,
but the IP being used is actually an IPv4-address.
Current's tcp-metrics will thus represent it as an IPv6-address:

root@server:~# ip tcp_metrics
::ffff:10.1.1.2 age 22.920sec rtt 18750us rttvar 15000us cwnd 10
10.1.1.2 age 47.970sec rtt 16250us rttvar 10000us cwnd 10

This patch modifies the tcp-metrics so that they are able to handle the
v6/v4-mapped sockets correctly.

Signed-off-by: Christoph Paasch <christoph.paasch@uclouvain.be>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_metrics.c