snd_cwnd_clamp    279 include/linux/tcp.h 	u32	snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */
snd_cwnd_clamp   4367 net/core/filter.c 					tp->snd_cwnd_clamp = val;
snd_cwnd_clamp    437 net/ipv4/tcp.c 	tp->snd_cwnd_clamp = ~0;
snd_cwnd_clamp    545 net/ipv4/tcp_bbr.c 	tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp);	/* apply global cap */
snd_cwnd_clamp    399 net/ipv4/tcp_cong.c 	tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp);
snd_cwnd_clamp    423 net/ipv4/tcp_cong.c 	tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_cwnd_clamp);
snd_cwnd_clamp    109 net/ipv4/tcp_highspeed.c 	tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128);
snd_cwnd_clamp    140 net/ipv4/tcp_highspeed.c 		if (tp->snd_cwnd < tp->snd_cwnd_clamp) {
snd_cwnd_clamp    246 net/ipv4/tcp_htcp.c 			if (tp->snd_cwnd < tp->snd_cwnd_clamp)
snd_cwnd_clamp     58 net/ipv4/tcp_hybla.c 	tp->snd_cwnd_clamp = 65535;
snd_cwnd_clamp    164 net/ipv4/tcp_hybla.c 	tp->snd_cwnd = min_t(u32, tp->snd_cwnd, tp->snd_cwnd_clamp);
snd_cwnd_clamp    289 net/ipv4/tcp_illinois.c 					   (u32)tp->snd_cwnd_clamp);
snd_cwnd_clamp    869 net/ipv4/tcp_input.c 	return min_t(__u32, cwnd, tp->snd_cwnd_clamp);
snd_cwnd_clamp    459 net/ipv4/tcp_metrics.c 		tp->snd_cwnd_clamp = tcp_metric_get(tm, TCP_METRIC_CWND);
snd_cwnd_clamp    464 net/ipv4/tcp_metrics.c 		if (tp->snd_ssthresh > tp->snd_cwnd_clamp)
snd_cwnd_clamp    465 net/ipv4/tcp_metrics.c 			tp->snd_ssthresh = tp->snd_cwnd_clamp;
snd_cwnd_clamp    274 net/ipv4/tcp_vegas.c 			else if (tp->snd_cwnd > tp->snd_cwnd_clamp)
snd_cwnd_clamp    275 net/ipv4/tcp_vegas.c 				tp->snd_cwnd = tp->snd_cwnd_clamp;
snd_cwnd_clamp    171 net/ipv4/tcp_veno.c 					    tp->snd_cwnd < tp->snd_cwnd_clamp) {
snd_cwnd_clamp    183 net/ipv4/tcp_veno.c 		else if (tp->snd_cwnd > tp->snd_cwnd_clamp)
snd_cwnd_clamp    184 net/ipv4/tcp_veno.c 			tp->snd_cwnd = tp->snd_cwnd_clamp;
snd_cwnd_clamp     57 net/ipv4/tcp_yeah.c 	tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128);
snd_cwnd_clamp     88 net/ipv4/tcp_yeah.c 			if (tp->snd_cwnd < tp->snd_cwnd_clamp)