Re: git: a743fc8826fa - main - tcp: fix cwnd restricted SACK retransmission loop
Date: Thu, 22 Sep 2022 11:39:38 UTC
On 9/22/22 13:30, Richard Scheffenegger wrote: > + cwin = tp->snd_cwnd - imax(0, (int32_t) > + (tp->snd_nxt - tp->snd_recover)) Could have used the SEQ_SUB() macro here. --HPS