Home
last modified time | relevance | path

Searched refs:rho (Results 1 - 4 of 4) sorted by relevance

/kernel/linux/linux-5.10/net/ipv4/
H A Dtcp_hybla.c21 u32 rho; /* Rho parameter, integer part */ member
41 ca->rho = ca->rho_3ls >> 3; in hybla_recalc_param()
51 ca->rho = 0; in hybla_init()
65 tp->snd_cwnd = ca->rho; in hybla_init()
97 /* Recalculate rho only if this srtt is the lowest */ in hybla_cong_avoid()
111 if (ca->rho == 0) in hybla_cong_avoid()
114 rho_fractions = ca->rho_3ls - (ca->rho << 3); in hybla_cong_avoid()
120 * This is done by splitting the rho parameter in hybla_cong_avoid()
131 increment = ((1 << min(ca->rho, 16U)) * in hybla_cong_avoid()
137 * as long as increment is estimated as (rho<< in hybla_cong_avoid()
[all...]
/kernel/linux/linux-6.6/net/ipv4/
H A Dtcp_hybla.c21 u32 rho; /* Rho parameter, integer part */ member
41 ca->rho = ca->rho_3ls >> 3; in hybla_recalc_param()
51 ca->rho = 0; in hybla_init()
65 tcp_snd_cwnd_set(tp, ca->rho); in hybla_init()
97 /* Recalculate rho only if this srtt is the lowest */ in hybla_cong_avoid()
111 if (ca->rho == 0) in hybla_cong_avoid()
114 rho_fractions = ca->rho_3ls - (ca->rho << 3); in hybla_cong_avoid()
120 * This is done by splitting the rho parameter in hybla_cong_avoid()
131 increment = ((1 << min(ca->rho, 16U)) * in hybla_cong_avoid()
137 * as long as increment is estimated as (rho<< in hybla_cong_avoid()
[all...]
/kernel/linux/linux-5.10/net/sched/
H A Dsch_netem.c104 u32 rho; member
171 static void init_crandom(struct crndstate *state, unsigned long rho) in init_crandom() argument
173 state->rho = rho; in init_crandom()
179 * rho is scaled to avoid floating point.
183 u64 value, rho; in get_crandom() local
186 if (!state || state->rho == 0) /* no correlation */ in get_crandom()
190 rho = (u64)state->rho + 1; in get_crandom()
191 answer = (value * ((1ull<<32) - rho) in get_crandom()
[all...]
/kernel/linux/linux-6.6/net/sched/
H A Dsch_netem.c105 u32 rho; member
177 static void init_crandom(struct crndstate *state, unsigned long rho) in init_crandom() argument
179 state->rho = rho; in init_crandom()
185 * rho is scaled to avoid floating point.
189 u64 value, rho; in get_crandom() local
193 if (!state || state->rho == 0) /* no correlation */ in get_crandom()
197 rho = (u64)state->rho + 1; in get_crandom()
198 answer = (value * ((1ull<<32) - rho) in get_crandom()
[all...]

Completed in 3 milliseconds