aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp/input.c')
-rw-r--r--net/dccp/input.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/net/dccp/input.c b/net/dccp/input.c
index b1e38bf94456..df0e6714aa11 100644
--- a/net/dccp/input.c
+++ b/net/dccp/input.c
@@ -707,16 +707,7 @@ u32 dccp_sample_rtt(struct sock *sk, long delta)
707 /* dccpor_elapsed_time is either zeroed out or set and > 0 */ 707 /* dccpor_elapsed_time is either zeroed out or set and > 0 */
708 delta -= dccp_sk(sk)->dccps_options_received.dccpor_elapsed_time * 10; 708 delta -= dccp_sk(sk)->dccps_options_received.dccpor_elapsed_time * 10;
709 709
710 if (unlikely(delta <= 0)) { 710 return dccp_sane_rtt(delta);
711 DCCP_WARN("unusable RTT sample %ld, using min\n", delta);
712 return DCCP_SANE_RTT_MIN;
713 }
714 if (unlikely(delta > DCCP_SANE_RTT_MAX)) {
715 DCCP_WARN("RTT sample %ld too large, using max\n", delta);
716 return DCCP_SANE_RTT_MAX;
717 }
718
719 return delta;
720} 711}
721 712
722EXPORT_SYMBOL_GPL(dccp_sample_rtt); 713EXPORT_SYMBOL_GPL(dccp_sample_rtt);