tx_cwnd            76 net/dccp/ccids/ccid2.c 	u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->tx_cwnd, 2);
tx_cwnd           106 net/dccp/ccids/ccid2.c 	if (dccp_feat_nn_get(sk, DCCPF_ACK_RATIO) > hc->tx_cwnd)
tx_cwnd           107 net/dccp/ccids/ccid2.c 		ccid2_change_l_ack_ratio(sk, hc->tx_cwnd/2 ? : 1U);
tx_cwnd           150 net/dccp/ccids/ccid2.c 	hc->tx_ssthresh = hc->tx_cwnd / 2;
tx_cwnd           153 net/dccp/ccids/ccid2.c 	hc->tx_cwnd	= 1;
tx_cwnd           202 net/dccp/ccids/ccid2.c 	if (win_used < hc->tx_cwnd) {
tx_cwnd           204 net/dccp/ccids/ccid2.c 				     (hc->tx_cwnd >> 1) + (hc->tx_cwnd >> 2));
tx_cwnd           205 net/dccp/ccids/ccid2.c 		hc->tx_cwnd = (hc->tx_cwnd + win_used) >> 1;
tx_cwnd           217 net/dccp/ccids/ccid2.c 	u32 cwnd = hc->tx_cwnd, restart_cwnd,
tx_cwnd           228 net/dccp/ccids/ccid2.c 	hc->tx_cwnd = max(cwnd, restart_cwnd);
tx_cwnd           252 net/dccp/ccids/ccid2.c 		ccid2_update_used_window(hc, hc->tx_cwnd);
tx_cwnd           282 net/dccp/ccids/ccid2.c 	ccid2_pr_debug("cwnd=%d pipe=%d\n", hc->tx_cwnd, hc->tx_pipe);
tx_cwnd           308 net/dccp/ccids/ccid2.c 		if (hc->tx_arsent >= hc->tx_cwnd) {
tx_cwnd           320 net/dccp/ccids/ccid2.c 			denom = hc->tx_cwnd * hc->tx_cwnd / denom;
tx_cwnd           434 net/dccp/ccids/ccid2.c 	int r_seq_used = hc->tx_cwnd / dp->dccps_l_ack_ratio;
tx_cwnd           436 net/dccp/ccids/ccid2.c 	if (hc->tx_cwnd < dp->dccps_l_seq_win &&
tx_cwnd           438 net/dccp/ccids/ccid2.c 		if (hc->tx_cwnd < hc->tx_ssthresh) {
tx_cwnd           440 net/dccp/ccids/ccid2.c 				hc->tx_cwnd += 1;
tx_cwnd           444 net/dccp/ccids/ccid2.c 		} else if (++hc->tx_packets_acked >= hc->tx_cwnd) {
tx_cwnd           445 net/dccp/ccids/ccid2.c 			hc->tx_cwnd += 1;
tx_cwnd           459 net/dccp/ccids/ccid2.c 	if (hc->tx_cwnd * CCID2_WIN_CHANGE_FACTOR >= dp->dccps_l_seq_win)
tx_cwnd           461 net/dccp/ccids/ccid2.c 	else if (hc->tx_cwnd * CCID2_WIN_CHANGE_FACTOR < dp->dccps_l_seq_win/2)
tx_cwnd           486 net/dccp/ccids/ccid2.c 	hc->tx_cwnd      = hc->tx_cwnd / 2 ? : 1U;
tx_cwnd           487 net/dccp/ccids/ccid2.c 	hc->tx_ssthresh  = max(hc->tx_cwnd, 2U);
tx_cwnd           580 net/dccp/ccids/ccid2.c 	if (hc->tx_cwnd < hc->tx_ssthresh)
tx_cwnd           723 net/dccp/ccids/ccid2.c 	hc->tx_cwnd = rfc3390_bytes_to_packets(dp->dccps_mss_cache);
tx_cwnd           724 net/dccp/ccids/ccid2.c 	hc->tx_expected_wnd = hc->tx_cwnd;
tx_cwnd           727 net/dccp/ccids/ccid2.c 	max_ratio = DIV_ROUND_UP(hc->tx_cwnd, 2);
tx_cwnd            58 net/dccp/ccids/ccid2.h 	u32			tx_cwnd;
tx_cwnd            92 net/dccp/ccids/ccid2.h 	return hc->tx_pipe >= hc->tx_cwnd;