Lines Matching refs:cwnd
45 unsigned int cwnd = call->cong_cwnd; in rxrpc_congestion_management() local
55 cwnd = 1; in rxrpc_congestion_management()
56 if (cwnd >= call->cong_ssthresh && in rxrpc_congestion_management()
70 summary->cwnd = call->cong_cwnd; in rxrpc_congestion_management()
80 cwnd += 1; in rxrpc_congestion_management()
81 if (cwnd >= call->cong_ssthresh) { in rxrpc_congestion_management()
102 if (cumulative_acks >= cwnd) in rxrpc_congestion_management()
103 cwnd++; in rxrpc_congestion_management()
126 cwnd = call->cong_ssthresh + 3; in rxrpc_congestion_management()
135 cwnd += 1; in rxrpc_congestion_management()
144 cwnd = call->cong_ssthresh; in rxrpc_congestion_management()
160 if (cwnd < call->cong_ssthresh) in rxrpc_congestion_management()
167 if (cwnd >= RXRPC_RXTX_BUFF_SIZE - 1) in rxrpc_congestion_management()
168 cwnd = RXRPC_RXTX_BUFF_SIZE - 1; in rxrpc_congestion_management()
169 call->cong_cwnd = cwnd; in rxrpc_congestion_management()