Subject: Re: Refactoring Congestion Control (take 2)
To: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp>
From: Rui Paulo <rpaulo@fnop.net>
List: tech-net
Date: 09/27/2006 13:17:24
On Sep 27, 2006, at 4:21 AM, YAMAMOTO Takashi wrote:

>> @@ -1604,7 +1605,7 @@ out:
>>  	if (maxburst < 0)
>>  		printf("tcp_output: maxburst exceeded by %d\n", -maxburst);
>>  #endif
>> -	if (sendalot && (!tcp_do_newreno || --maxburst))
>> +	if (sendalot && (tp->t_congctl == &tcp_reno_ctl || --maxburst))
>>  		goto again;
>>  	return (0);
>>  }
>
> isn't it better to make this another callback?

Hmm. It may be, thanks.

--
Rui Paulo