Searched defs:reduction (Results 1 - 2 of 2) sorted by relevance

/net/ipv4/
H A Dtcp_yeah.c159 u32 reduction = min(queue / TCP_YEAH_GAMMA , local
162 tp->snd_cwnd -= reduction;
208 u32 reduction; local
211 reduction = yeah->lastQ;
213 reduction = min(reduction, max(tp->snd_cwnd>>1, 2U));
215 reduction = max(reduction, tp->snd_cwnd >> TCP_YEAH_DELTA);
217 reduction = max(tp->snd_cwnd>>1, 2U);
222 return tp->snd_cwnd - reduction;
[all...]
/net/can/
H A Dbcm.c177 unsigned long reduction; local
197 seq_printf(m, "# recv %ld (%ld) => reduction: ",
200 reduction = 100 - (op->frames_filtered * 100) / op->frames_abs;
203 (reduction == 100)?"near ":"", reduction);

Completed in 412 milliseconds