Symbol: yeah
net/ipv4/tcp_yeah.c
103
if (after(ack, yeah->vegas.beg_snd_nxt)) {
net/ipv4/tcp_yeah.c
113
if (yeah->vegas.cntRTT > 2) {
net/ipv4/tcp_yeah.c
128
rtt = yeah->vegas.minRTT;
net/ipv4/tcp_yeah.c
134
bw *= rtt - yeah->vegas.baseRTT;
net/ipv4/tcp_yeah.c
139
rtt - yeah->vegas.baseRTT > (yeah->vegas.baseRTT / TCP_YEAH_PHY)) {
net/ipv4/tcp_yeah.c
141
tcp_snd_cwnd(tp) > yeah->reno_count) {
net/ipv4/tcp_yeah.c
148
yeah->reno_count));
net/ipv4/tcp_yeah.c
154
if (yeah->reno_count <= 2)
net/ipv4/tcp_yeah.c
155
yeah->reno_count = max(tcp_snd_cwnd(tp)>>1, 2U);
net/ipv4/tcp_yeah.c
157
yeah->reno_count++;
net/ipv4/tcp_yeah.c
159
yeah->doing_reno_now = min(yeah->doing_reno_now + 1,
net/ipv4/tcp_yeah.c
162
yeah->fast_count++;
net/ipv4/tcp_yeah.c
164
if (yeah->fast_count > TCP_YEAH_ZETA) {
net/ipv4/tcp_yeah.c
165
yeah->reno_count = 2;
net/ipv4/tcp_yeah.c
166
yeah->fast_count = 0;
net/ipv4/tcp_yeah.c
169
yeah->doing_reno_now = 0;
net/ipv4/tcp_yeah.c
172
yeah->lastQ = queue;
net/ipv4/tcp_yeah.c
178
yeah->vegas.beg_snd_una = yeah->vegas.beg_snd_nxt;
net/ipv4/tcp_yeah.c
179
yeah->vegas.beg_snd_nxt = tp->snd_nxt;
net/ipv4/tcp_yeah.c
180
yeah->vegas.beg_snd_cwnd = tcp_snd_cwnd(tp);
net/ipv4/tcp_yeah.c
183
yeah->vegas.cntRTT = 0;
net/ipv4/tcp_yeah.c
184
yeah->vegas.minRTT = 0x7fffffff;
net/ipv4/tcp_yeah.c
191
struct yeah *yeah = inet_csk_ca(sk);
net/ipv4/tcp_yeah.c
194
if (yeah->doing_reno_now < TCP_YEAH_RHO) {
net/ipv4/tcp_yeah.c
195
reduction = yeah->lastQ;
net/ipv4/tcp_yeah.c
203
yeah->fast_count = 0;
net/ipv4/tcp_yeah.c
204
yeah->reno_count = max(yeah->reno_count>>1, 2U);
net/ipv4/tcp_yeah.c
226
BUILD_BUG_ON(sizeof(struct yeah) > ICSK_CA_PRIV_SIZE);
net/ipv4/tcp_yeah.c
44
struct yeah *yeah = inet_csk_ca(sk);
net/ipv4/tcp_yeah.c
48
yeah->doing_reno_now = 0;
net/ipv4/tcp_yeah.c
49
yeah->lastQ = 0;
net/ipv4/tcp_yeah.c
51
yeah->reno_count = 2;
net/ipv4/tcp_yeah.c
61
struct yeah *yeah = inet_csk_ca(sk);
net/ipv4/tcp_yeah.c
72
if (!yeah->doing_reno_now) {