diff options
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r-- | net/ipv4/tcp_output.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index b35802af3c4c..8819eba8ebb8 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
@@ -488,7 +488,9 @@ static unsigned tcp_syn_options(struct sock *sk, struct sk_buff *skb, | |||
488 | opts->mss = tcp_advertise_mss(sk); | 488 | opts->mss = tcp_advertise_mss(sk); |
489 | size += TCPOLEN_MSS_ALIGNED; | 489 | size += TCPOLEN_MSS_ALIGNED; |
490 | 490 | ||
491 | if (likely(sysctl_tcp_timestamps && *md5 == NULL)) { | 491 | if (likely(sysctl_tcp_timestamps && |
492 | !dst_feature(dst, RTAX_FEATURE_NO_TSTAMP) && | ||
493 | *md5 == NULL)) { | ||
492 | opts->options |= OPTION_TS; | 494 | opts->options |= OPTION_TS; |
493 | opts->tsval = TCP_SKB_CB(skb)->when; | 495 | opts->tsval = TCP_SKB_CB(skb)->when; |
494 | opts->tsecr = tp->rx_opt.ts_recent; | 496 | opts->tsecr = tp->rx_opt.ts_recent; |
@@ -2317,7 +2319,9 @@ static void tcp_connect_init(struct sock *sk) | |||
2317 | * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT. | 2319 | * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT. |
2318 | */ | 2320 | */ |
2319 | tp->tcp_header_len = sizeof(struct tcphdr) + | 2321 | tp->tcp_header_len = sizeof(struct tcphdr) + |
2320 | (sysctl_tcp_timestamps ? TCPOLEN_TSTAMP_ALIGNED : 0); | 2322 | (sysctl_tcp_timestamps && |
2323 | (!dst_feature(dst, RTAX_FEATURE_NO_TSTAMP) ? | ||
2324 | TCPOLEN_TSTAMP_ALIGNED : 0)); | ||
2321 | 2325 | ||
2322 | #ifdef CONFIG_TCP_MD5SIG | 2326 | #ifdef CONFIG_TCP_MD5SIG |
2323 | if (tp->af_specific->md5_lookup(sk, sk) != NULL) | 2327 | if (tp->af_specific->md5_lookup(sk, sk) != NULL) |