Subject: Re: Refactoring Congestion Control (take 2)
To: None <rpaulo@fnop.net>
From: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp>
List: tech-net
Date: 09/27/2006 12:21:12
> @@ -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?

YAMAMOTO Takashi