CLEANUP: quic: Remove window redundant variable from NewReno algorithm state struct

We use the window variable which is stored in the path struct.
This commit is contained in:
Frédéric Lécaille 2022-03-03 08:24:53 +01:00 committed by Amaury Denoyelle
parent 0e7c9a7143
commit 9777ead2ed
2 changed files with 13 additions and 18 deletions

View File

@ -73,7 +73,6 @@ union quic_cc_algo_state {
/* NewReno */ /* NewReno */
struct nr { struct nr {
enum quic_cc_algo_state_type state; enum quic_cc_algo_state_type state;
uint64_t cwnd;
uint64_t ssthresh; uint64_t ssthresh;
uint64_t recovery_start_time; uint64_t recovery_start_time;
uint64_t remain_acked; uint64_t remain_acked;

View File

@ -28,11 +28,7 @@
static int quic_cc_nr_init(struct quic_cc *cc) static int quic_cc_nr_init(struct quic_cc *cc)
{ {
struct quic_path *path;
path = container_of(cc, struct quic_path, cc);
cc->algo_state.nr.state = QUIC_CC_ST_SS; cc->algo_state.nr.state = QUIC_CC_ST_SS;
cc->algo_state.nr.cwnd = path->cwnd;
cc->algo_state.nr.ssthresh = QUIC_CC_INFINITE_SSTHESH; cc->algo_state.nr.ssthresh = QUIC_CC_INFINITE_SSTHESH;
cc->algo_state.nr.recovery_start_time = 0; cc->algo_state.nr.recovery_start_time = 0;
cc->algo_state.nr.remain_acked = 0; cc->algo_state.nr.remain_acked = 0;
@ -46,7 +42,7 @@ static void quic_cc_nr_slow_start(struct quic_cc *cc)
struct quic_path *path; struct quic_path *path;
path = container_of(cc, struct quic_path, cc); path = container_of(cc, struct quic_path, cc);
cc->algo_state.nr.cwnd = path->min_cwnd; path->cwnd = path->min_cwnd;
/* Re-entering slow start state. */ /* Re-entering slow start state. */
cc->algo_state.nr.state = QUIC_CC_ST_SS; cc->algo_state.nr.state = QUIC_CC_ST_SS;
/* Recovery start time reset */ /* Recovery start time reset */
@ -66,16 +62,15 @@ static void quic_cc_nr_ss_cb(struct quic_cc *cc, struct quic_cc_event *ev)
if (ev->ack.time_sent <= cc->algo_state.nr.recovery_start_time) if (ev->ack.time_sent <= cc->algo_state.nr.recovery_start_time)
return; return;
cc->algo_state.nr.cwnd += ev->ack.acked; path->cwnd += ev->ack.acked;
/* Exit to congestion avoidance if slow start threshold is reached. */ /* Exit to congestion avoidance if slow start threshold is reached. */
if (cc->algo_state.nr.cwnd > cc->algo_state.nr.ssthresh) if (path->cwnd > cc->algo_state.nr.ssthresh)
cc->algo_state.nr.state = QUIC_CC_ST_CA; cc->algo_state.nr.state = QUIC_CC_ST_CA;
path->cwnd = cc->algo_state.nr.cwnd;
break; break;
case QUIC_CC_EVT_LOSS: case QUIC_CC_EVT_LOSS:
cc->algo_state.nr.cwnd = QUIC_MAX(cc->algo_state.nr.cwnd >> 1, path->min_cwnd); path->cwnd = QUIC_MAX(path->cwnd >> 1, path->min_cwnd);
path->cwnd = cc->algo_state.nr.ssthresh = cc->algo_state.nr.cwnd; cc->algo_state.nr.ssthresh = path->cwnd;
/* Exit to congestion avoidance. */ /* Exit to congestion avoidance. */
cc->algo_state.nr.state = QUIC_CC_ST_CA; cc->algo_state.nr.state = QUIC_CC_ST_CA;
break; break;
@ -105,9 +100,8 @@ static void quic_cc_nr_ca_cb(struct quic_cc *cc, struct quic_cc_event *ev)
/* Increasing the congestion window by (acked / cwnd) /* Increasing the congestion window by (acked / cwnd)
*/ */
acked = ev->ack.acked * path->mtu + cc->algo_state.nr.remain_acked; acked = ev->ack.acked * path->mtu + cc->algo_state.nr.remain_acked;
cc->algo_state.nr.remain_acked = acked % cc->algo_state.nr.cwnd; cc->algo_state.nr.remain_acked = acked % path->cwnd;
cc->algo_state.nr.cwnd += acked / cc->algo_state.nr.cwnd; path->cwnd += acked / path->cwnd;
path->cwnd = cc->algo_state.nr.cwnd;
break; break;
} }
@ -117,9 +111,8 @@ static void quic_cc_nr_ca_cb(struct quic_cc *cc, struct quic_cc_event *ev)
goto out; goto out;
cc->algo_state.nr.recovery_start_time = now_ms; cc->algo_state.nr.recovery_start_time = now_ms;
cc->algo_state.nr.ssthresh = cc->algo_state.nr.cwnd; cc->algo_state.nr.ssthresh = path->cwnd;
cc->algo_state.nr.cwnd = QUIC_MAX(cc->algo_state.nr.cwnd >> 1, path->min_cwnd); path->cwnd = QUIC_MAX(path->cwnd >> 1, path->min_cwnd);
path->cwnd = cc->algo_state.nr.cwnd;
break; break;
case QUIC_CC_EVT_ECN_CE: case QUIC_CC_EVT_ECN_CE:
@ -133,9 +126,12 @@ static void quic_cc_nr_ca_cb(struct quic_cc *cc, struct quic_cc_event *ev)
static void quic_cc_nr_state_trace(struct buffer *buf, const struct quic_cc *cc) static void quic_cc_nr_state_trace(struct buffer *buf, const struct quic_cc *cc)
{ {
struct quic_path *path;
path = container_of(cc, struct quic_path, cc);
chunk_appendf(buf, " state=%s cwnd=%llu ssthresh=%ld recovery_start_time=%llu", chunk_appendf(buf, " state=%s cwnd=%llu ssthresh=%ld recovery_start_time=%llu",
quic_cc_state_str(cc->algo_state.nr.state), quic_cc_state_str(cc->algo_state.nr.state),
(unsigned long long)cc->algo_state.nr.cwnd, (unsigned long long)path->cwnd,
(long)cc->algo_state.nr.ssthresh, (long)cc->algo_state.nr.ssthresh,
(unsigned long long)cc->algo_state.nr.recovery_start_time); (unsigned long long)cc->algo_state.nr.recovery_start_time);
} }