X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Ftcp%2Ftcp_cubic.c;h=b79ef8342d30f7a0b1fd1e7b342df649ff85f3eb;hb=refs%2Fchanges%2F40%2F25840%2F12;hp=717c54b146a3b9e704630720b6d5f06070dfd0e8;hpb=6ebd4398ae3dabb19653d9dd3919b453dd17454b;p=vpp.git diff --git a/src/vnet/tcp/tcp_cubic.c b/src/vnet/tcp/tcp_cubic.c index 717c54b146a..b79ef8342d3 100644 --- a/src/vnet/tcp/tcp_cubic.c +++ b/src/vnet/tcp/tcp_cubic.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Cisco and/or its affiliates. + * Copyright (c) 2018-2019 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: @@ -23,10 +23,12 @@ typedef struct cubic_cfg_ { u8 fast_convergence; + u32 ssthresh; } cubic_cfg_t; static cubic_cfg_t cubic_cfg = { .fast_convergence = 1, + .ssthresh = 0x7FFFFFFFU, }; typedef struct cubic_data_ @@ -103,6 +105,18 @@ cubic_congestion (tcp_connection_t * tc) cd->w_max = w_max; tc->ssthresh = clib_max (tc->cwnd * beta_cubic, 2 * tc->snd_mss); + tc->cwnd = tc->ssthresh; +} + +static void +cubic_loss (tcp_connection_t * tc) +{ + cubic_data_t *cd = (cubic_data_t *) tcp_cc_data (tc); + + tc->cwnd = tcp_loss_wnd (tc); + cd->t_start = cubic_time (tc->c_thread_index); + cd->K = 0; + cd->w_max = tc->cwnd / tc->snd_mss; } static void @@ -130,7 +144,7 @@ cubic_cwnd_accumulate (tcp_connection_t * tc, u32 thresh, u32 bytes_acked) } static void -cubic_rcv_ack (tcp_connection_t * tc) +cubic_rcv_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs) { cubic_data_t *cd = (cubic_data_t *) tcp_cc_data (tc); u64 w_cubic, w_aimd; @@ -143,7 +157,7 @@ cubic_rcv_ack (tcp_connection_t * tc) if (tcp_in_slowstart (tc)) { - tc->cwnd += clib_min (tc->snd_mss, tc->bytes_acked); + tc->cwnd += tc->bytes_acked; return; } @@ -188,7 +202,7 @@ static void cubic_conn_init (tcp_connection_t * tc) { cubic_data_t *cd = (cubic_data_t *) tcp_cc_data (tc); - tc->ssthresh = tc->snd_wnd; + tc->ssthresh = cubic_cfg.ssthresh; tc->cwnd = tcp_initial_cwnd (tc); cd->w_max = 0; cd->K = 0; @@ -198,6 +212,8 @@ cubic_conn_init (tcp_connection_t * tc) static uword cubic_unformat_config (unformat_input_t * input) { + u32 ssthresh = 0x7FFFFFFFU; + if (!input) return 0; @@ -207,6 +223,8 @@ cubic_unformat_config (unformat_input_t * input) { if (unformat (input, "no-fast-convergence")) cubic_cfg.fast_convergence = 0; + else if (unformat (input, "ssthresh %u", &ssthresh)) + cubic_cfg.ssthresh = ssthresh; else return 0; } @@ -217,6 +235,7 @@ const static tcp_cc_algorithm_t tcp_cubic = { .name = "cubic", .unformat_cfg = cubic_unformat_config, .congestion = cubic_congestion, + .loss = cubic_loss, .recovered = cubic_recovered, .rcv_ack = cubic_rcv_ack, .rcv_cong_ack = newreno_rcv_cong_ack,