Lines Matching refs:cwnd
28 unsigned int cwnd = call->cong_cwnd; in rxrpc_congestion_management() local
38 cwnd = 1; in rxrpc_congestion_management()
39 if (cwnd >= call->cong_ssthresh && in rxrpc_congestion_management()
53 summary->cwnd = call->cong_cwnd; in rxrpc_congestion_management()
63 cwnd += 1; in rxrpc_congestion_management()
64 if (cwnd >= call->cong_ssthresh) { in rxrpc_congestion_management()
85 if (cumulative_acks >= cwnd) in rxrpc_congestion_management()
86 cwnd++; in rxrpc_congestion_management()
109 cwnd = call->cong_ssthresh + 3; in rxrpc_congestion_management()
118 cwnd += 1; in rxrpc_congestion_management()
127 cwnd = call->cong_ssthresh; in rxrpc_congestion_management()
143 if (cwnd < call->cong_ssthresh) in rxrpc_congestion_management()
150 if (cwnd >= RXRPC_TX_MAX_WINDOW) in rxrpc_congestion_management()
151 cwnd = RXRPC_TX_MAX_WINDOW; in rxrpc_congestion_management()
152 call->cong_cwnd = cwnd; in rxrpc_congestion_management()