diff options
Diffstat (limited to 'net/dccp/ccids/ccid3.c')
-rw-r--r-- | net/dccp/ccids/ccid3.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c index b21d8110298c..e75efe72da2b 100644 --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c | |||
@@ -401,7 +401,7 @@ static void ccid3_hc_tx_packet_sent(struct sock *sk, int more, | |||
401 | } | 401 | } |
402 | dccp_tx_hist_add_entry(&hctx->ccid3hctx_hist, packet); | 402 | dccp_tx_hist_add_entry(&hctx->ccid3hctx_hist, packet); |
403 | 403 | ||
404 | packet->dccphtx_tstamp = ktime_to_timeval(ktime_get_real()); | 404 | packet->dccphtx_tstamp = ktime_get_real(); |
405 | packet->dccphtx_seqno = dccp_sk(sk)->dccps_gss; | 405 | packet->dccphtx_seqno = dccp_sk(sk)->dccps_gss; |
406 | packet->dccphtx_rtt = hctx->ccid3hctx_rtt; | 406 | packet->dccphtx_rtt = hctx->ccid3hctx_rtt; |
407 | packet->dccphtx_sent = 1; | 407 | packet->dccphtx_sent = 1; |
@@ -412,7 +412,7 @@ static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb) | |||
412 | struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk); | 412 | struct ccid3_hc_tx_sock *hctx = ccid3_hc_tx_sk(sk); |
413 | struct ccid3_options_received *opt_recv; | 413 | struct ccid3_options_received *opt_recv; |
414 | struct dccp_tx_hist_entry *packet; | 414 | struct dccp_tx_hist_entry *packet; |
415 | ktime_t now, t_hist; | 415 | ktime_t now; |
416 | unsigned long t_nfb; | 416 | unsigned long t_nfb; |
417 | u32 pinv, r_sample; | 417 | u32 pinv, r_sample; |
418 | 418 | ||
@@ -451,12 +451,11 @@ static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb) | |||
451 | hctx->ccid3hctx_p = 1000000 / pinv; | 451 | hctx->ccid3hctx_p = 1000000 / pinv; |
452 | 452 | ||
453 | now = ktime_get_real(); | 453 | now = ktime_get_real(); |
454 | t_hist = timeval_to_ktime(packet->dccphtx_tstamp); | ||
455 | /* | 454 | /* |
456 | * Calculate new round trip sample as per [RFC 3448, 4.3] by | 455 | * Calculate new round trip sample as per [RFC 3448, 4.3] by |
457 | * R_sample = (now - t_recvdata) - t_elapsed | 456 | * R_sample = (now - t_recvdata) - t_elapsed |
458 | */ | 457 | */ |
459 | r_sample = dccp_sample_rtt(sk, now, &t_hist); | 458 | r_sample = dccp_sample_rtt(sk, now, &packet->dccphtx_tstamp); |
460 | 459 | ||
461 | /* | 460 | /* |
462 | * Update RTT estimate by | 461 | * Update RTT estimate by |