diff options
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r-- | net/ipv4/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 267b0fcbfc9c..8d92ab562aed 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
@@ -282,7 +282,7 @@ static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb) | |||
282 | 282 | ||
283 | /* If congestion control is doing timestamping */ | 283 | /* If congestion control is doing timestamping */ |
284 | if (icsk->icsk_ca_ops->rtt_sample) | 284 | if (icsk->icsk_ca_ops->rtt_sample) |
285 | do_gettimeofday(&skb->stamp); | 285 | __net_timestamp(skb); |
286 | 286 | ||
287 | sysctl_flags = 0; | 287 | sysctl_flags = 0; |
288 | if (tcb->flags & TCPCB_FLAG_SYN) { | 288 | if (tcb->flags & TCPCB_FLAG_SYN) { |
@@ -483,7 +483,7 @@ static int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len, unsigned | |||
483 | * skbs, which it never sent before. --ANK | 483 | * skbs, which it never sent before. --ANK |
484 | */ | 484 | */ |
485 | TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when; | 485 | TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when; |
486 | buff->stamp = skb->stamp; | 486 | buff->tstamp = skb->tstamp; |
487 | 487 | ||
488 | if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) { | 488 | if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) { |
489 | tp->lost_out -= tcp_skb_pcount(skb); | 489 | tp->lost_out -= tcp_skb_pcount(skb); |