Lines Matching refs:cwnd
49 unsigned int cwnd = call->cong_cwnd; in rxrpc_congestion_management() local
59 cwnd = 1; in rxrpc_congestion_management()
60 if (cwnd >= call->cong_ssthresh && in rxrpc_congestion_management()
74 summary->cwnd = call->cong_cwnd; in rxrpc_congestion_management()
84 cwnd += 1; in rxrpc_congestion_management()
85 if (cwnd >= call->cong_ssthresh) { in rxrpc_congestion_management()
106 if (cumulative_acks >= cwnd) in rxrpc_congestion_management()
107 cwnd++; in rxrpc_congestion_management()
130 cwnd = call->cong_ssthresh + 3; in rxrpc_congestion_management()
139 cwnd += 1; in rxrpc_congestion_management()
148 cwnd = call->cong_ssthresh; in rxrpc_congestion_management()
164 if (cwnd < call->cong_ssthresh) in rxrpc_congestion_management()
171 if (cwnd >= RXRPC_RXTX_BUFF_SIZE - 1) in rxrpc_congestion_management()
172 cwnd = RXRPC_RXTX_BUFF_SIZE - 1; in rxrpc_congestion_management()
173 call->cong_cwnd = cwnd; in rxrpc_congestion_management()