]> git.itanic.dy.fi Git - linux-stable/commit
tcp: tcp_make_synack() should clear skb->tstamp
authorEric Dumazet <edumazet@google.com>
Thu, 9 Apr 2015 20:31:56 +0000 (13:31 -0700)
committerJiri Slaby <jslaby@suse.cz>
Mon, 27 Apr 2015 08:53:43 +0000 (10:53 +0200)
commite9cd7c29500abf8ecd6de85100f54430e4a46f1d
treee5dfb71716eac0019936558c9988e00cb94de31d
parentd170fbc221539c90d48fa4163f141ad948fb6c2c
tcp: tcp_make_synack() should clear skb->tstamp

[ Upstream commit b50edd7812852d989f2ef09dcfc729690f54a42d ]

I noticed tcpdump was giving funky timestamps for locally
generated SYNACK messages on loopback interface.

11:42:46.938990 IP 127.0.0.1.48245 > 127.0.0.2.23850: S
945476042:945476042(0) win 43690 <mss 65495,nop,nop,sackOK,nop,wscale 7>

20:28:58.502209 IP 127.0.0.2.23850 > 127.0.0.1.48245: S
3160535375:3160535375(0) ack 945476043 win 43690 <mss
65495,nop,nop,sackOK,nop,wscale 7>

This is because we need to clear skb->tstamp before
entering lower stack, otherwise net_timestamp_check()
does not set skb->tstamp.

Fixes: 7faee5c0d514 ("tcp: remove TCP_SKB_CB(skb)->when")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
net/ipv4/tcp_output.c