Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Nov 2008 09:06:57 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        Robert Watson <rwatson@FreeBSD.org>
Cc:        src-committers@freebsd.org, Kip Macy <kmacy@FreeBSD.org>, svn-src-user@freebsd.org
Subject:   Re: svn commit: r184864 - user/kmacy/HEAD_fast_multi_xmit/sys/netinet
Message-ID:  <20081113090608.I67750@maildrop.int.zabbadoz.net>
In-Reply-To: <alpine.BSF.1.10.0811122159190.89472@fledge.watson.org>
References:  <200811120732.mAC7W7Sr023153@svn.freebsd.org> <alpine.BSF.1.10.0811122159190.89472@fledge.watson.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 12 Nov 2008, Robert Watson wrote:

>
> On Wed, 12 Nov 2008, Kip Macy wrote:
>
>> -	if (tp->t_maxopd <= mss)
>> -		return (inp);
>> -	tcp_output_send(tp);
>> +
>> +	if ((tp->t_flags & TF_RECURSE) == 0) {
>> +		tp->t_flags |= TF_RECURSE;
>> +		tcp_output_send(tp);
>> +		tp->t_flags &= ~TF_RECURSE;
>> +	}
>
> Perhaps TF_DONTRECURSE?  I find the current polarity slightly confusing.

Well, the real hope is that I find some time and actually find the
real solution to what I had broken, and stop it recusing at all.

-- 
Bjoern A. Zeeb              Stop bit received. Insert coin for new game.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20081113090608.I67750>