If the new window size is less than the old window size, skip the
calculations to check if we should advertise a larger window. Reviewed by: gnn MFC after: 2 weeks Sponsored by: Juniper Networks, Netflix Differential Revision: https://reviews.freebsd.org/D7076 Tested by: Limelight, Netflix
This commit is contained in:
parent
15c825712e
commit
0dda76b82b
@ -654,10 +654,11 @@ tcp_output(struct tcpcb *tp)
|
||||
oldwin = 0;
|
||||
|
||||
/*
|
||||
* If the new window size ends up being the same as the old
|
||||
* size when it is scaled, then don't force a window update.
|
||||
* If the new window size ends up being the same as or less
|
||||
* than the old size when it is scaled, then don't force
|
||||
* a window update.
|
||||
*/
|
||||
if (oldwin >> tp->rcv_scale == (adv + oldwin) >> tp->rcv_scale)
|
||||
if (oldwin >> tp->rcv_scale >= (adv + oldwin) >> tp->rcv_scale)
|
||||
goto dontupdate;
|
||||
|
||||
if (adv >= (long)(2 * tp->t_maxseg) &&
|
||||
|
Loading…
Reference in New Issue
Block a user