Andrey Vagin
9d186cac7f
tcp: don't use timestamp from repaired skb-s to calculate RTT (v2)
We don't know right timestamp for repaired skb-s. Wrong RTT estimations
isn't good, because some congestion modules heavily depends on it.
This patch adds the TCPCB_REPAIRED flag, which is included in
TCPCB_RETRANS.
Thanks to Eric for the advice how to fix this issue.
This patch fixes the warning:
[ 879.562947] WARNING: CPU: 0 PID: 2825 at net/ipv4/tcp_input.c:3078 tcp_ack+0x11f5/0x1380()
[ 879.567253] CPU: 0 PID: 2825 Comm: socket-tcpbuf-l Not tainted 3.16.0-next-20140811 #1
[ 879.567829] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[ 879.568177] 0000000000000000 00000000c532680c ffff880039643d00 ffffffff817aa2d2
[ 879.568776] 0000000000000000 ffff880039643d38 ffffffff8109afbd ffff880039d6ba80
[ 879.569386] ffff88003a449800 000000002983d6bd 0000000000000000 000000002983d6bc
[ 879.569982] Call Trace:
[ 879.570264] [<ffffffff817aa2d2>] dump_stack+0x4d/0x66
[ 879.570599] [<ffffffff8109afbd>] warn_slowpath_common+0x7d/0xa0
[ 879.570935] [<ffffffff8109b0ea>] warn_slowpath_null+0x1a/0x20
[ 879.571292] [<ffffffff816d0a05>] tcp_ack+0x11f5/0x1380
[ 879.571614] [<ffffffff816d10bd>] tcp_rcv_established+0x1ed/0x710
[ 879.571958] [<ffffffff816dc9da>] tcp_v4_do_rcv+0x10a/0x370
[ 879.572315] [<ffffffff81657459>] release_sock+0x89/0x1d0
[ 879.572642] [<ffffffff816c81a0>] do_tcp_setsockopt.isra.36+0x120/0x860
[ 879.573000] [<ffffffff8110a52e>] ? rcu_read_lock_held+0x6e/0x80
[ 879.573352] [<ffffffff816c8912>] tcp_setsockopt+0x32/0x40
[ 879.573678] [<ffffffff81654ac4>] sock_common_setsockopt+0x14/0x20
[ 879.574031] [<ffffffff816537b0>] SyS_setsockopt+0x80/0xf0
[ 879.574393] [<ffffffff817b40a9>] system_call_fastpath+0x16/0x1b
[ 879.574730] ---[ end trace a17cbc38eb8c5c00 ]---
v2: moving setting of skb->when for repaired skb-s in tcp_write_xmit,
where it's set for other skb-s.
Fixes: 431a91242d
("tcp: timestamp SYN+DATA messages")
Fixes: 740b0f1841
("tcp: switch rtt estimations to usec resolution")
Cc: Eric Dumazet <edumazet@google.com>
Cc: Pavel Emelyanov <xemul@parallels.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrey Vagin <avagin@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2014-08-14 14:38:54 -07:00
..
2014-07-25 14:55:44 +02:00
2014-07-16 14:45:26 -07:00
2014-02-25 07:04:17 +01:00
2014-01-02 00:08:38 -05:00
2014-08-01 11:17:37 -04:00
2014-07-07 21:14:21 -07:00
2014-07-29 11:43:50 -07:00
2014-02-25 07:04:17 +01:00
2014-04-16 15:05:11 -04:00
2013-12-28 17:01:46 -05:00
2013-12-10 17:54:23 -05:00
2014-05-07 17:14:32 -04:00
2014-08-06 18:01:24 -07:00
2014-07-11 13:53:39 -07:00
2014-07-29 15:31:56 -07:00
2014-08-02 15:27:35 -07:00
2014-07-24 23:23:31 -07:00
2014-05-14 15:31:45 -04:00
2014-01-13 22:35:46 -08:00
2014-08-02 15:31:31 -07:00
2014-05-14 16:07:23 -04:00
2013-12-29 16:34:25 -05:00
2013-10-08 23:19:24 -04:00
2014-06-12 14:27:40 -07:00
2014-05-12 14:03:41 -04:00
2014-08-02 15:31:31 -07:00
2014-06-10 22:46:42 -07:00
2014-01-27 16:22:11 -08:00
2014-07-21 20:16:26 -07:00
2014-08-05 16:35:54 -07:00
2014-07-29 16:31:16 -07:00
2014-06-04 22:46:38 -07:00
2014-08-05 18:46:26 -07:00
2014-06-26 08:21:57 +02:00
2014-02-25 07:04:17 +01:00
2014-07-09 22:25:18 -07:00
2014-06-11 16:02:55 -07:00
2014-07-15 16:12:48 -07:00
2014-07-14 16:12:15 -07:00
2014-07-14 16:12:15 -07:00
2014-02-19 11:41:25 +01:00
2014-07-31 22:37:06 -07:00
2014-07-27 22:34:36 -07:00
2013-11-28 18:47:51 -05:00
2014-07-23 15:13:26 -07:00
2014-08-08 10:22:22 -07:00
2014-06-27 15:53:35 -07:00
2014-05-14 15:31:45 -04:00
2014-05-03 19:23:07 -04:00
2014-05-03 19:23:07 -04:00
2014-05-12 13:19:14 -04:00
2012-01-11 12:56:06 -08:00
2014-06-16 21:35:00 -07:00
2014-05-03 19:23:07 -04:00
2014-05-03 19:23:07 -04:00
2014-05-03 19:23:07 -04:00
2014-05-03 19:23:07 -04:00
2014-08-13 20:06:06 -07:00
2014-08-06 16:00:20 -07:00
2014-05-03 19:23:07 -04:00
2014-07-15 11:05:09 -04:00
2014-07-31 14:07:37 -07:00
2014-07-01 23:46:21 -07:00
2014-08-06 14:09:01 -07:00
2014-08-14 14:38:54 -07:00
2014-02-26 17:08:40 -05:00
2014-05-03 19:23:07 -04:00
2014-08-05 16:29:33 -07:00
2014-07-30 17:31:06 -07:00
2013-10-19 19:12:11 -04:00
2014-07-30 17:31:06 -07:00
2014-02-13 18:22:34 -05:00
2014-05-03 19:23:07 -04:00
2014-08-14 14:38:54 -07:00
2012-03-11 23:42:51 -07:00
2013-04-19 14:57:56 -04:00
2013-10-19 19:12:11 -04:00
2014-07-29 15:31:56 -07:00
2014-07-14 16:12:15 -07:00
2014-07-23 13:23:06 -07:00
2014-05-23 16:28:53 -04:00
2014-02-25 07:04:16 +01:00
2013-12-26 13:43:21 -05:00
2014-06-02 11:00:41 -07:00
2014-05-24 00:32:30 -04:00
2014-03-14 07:28:07 +01:00
2014-06-30 07:49:47 +02:00
2013-12-18 16:58:20 -05:00
2013-05-31 17:19:05 -07:00