From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Lemoine Subject: Re: PATCH Re: udp weirdness Date: Thu, 3 Oct 2002 17:58:41 +0200 Sender: netdev-bounce@oss.sgi.com Message-ID: <20021003155841.GF601@hookipa> References: <3D99B6C7.3010302@nortelnetworks.com> <200210011531.TAA19943@sex.inr.ac.ru> <20021002111326.GG357@hookipa> <3D9B0FF1.1070203@candelatech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Eric Lemoine , kuznet@ms2.inr.ac.ru, Chris Friesen , hadi@cyberus.CA, netdev@oss.sgi.com Return-path: To: Ben Greear Content-Disposition: inline In-Reply-To: <3D9B0FF1.1070203@candelatech.com> Errors-to: netdev-bounce@oss.sgi.com List-Id: netdev.vger.kernel.org > > >It is difficult task, if possible at all. > > > > > >The main obstacle is that we must not block after select() succeeded, > > >otherwise applications will lockup. Taking into account nature of datagram > > >services (and generally of networking services, where routes change et > > >al.) > > >you do not know at time of select(), where the datagram will go. > > >So, blocking can be made only based on a criterium not depending on this. > > >problems with silent losses. People just do not care about this, so > > >they get the thing which they deserve. > > > >Alexey, > > > >Would you mind explaining a bit more why apps will lockup if we block > >after select() succeeded. Or anyone? > > Actually, I'm more interested to know why we would **need** to block after > select has succeeded. It would seem to me that select is busted in this > case. For the case of a very large UDP packet and a small send buffer, > select gets confused, but at least when the send buffer is > 128k, it should > be right... With the current impl. process calling sendto() doesn't go to sleep after select() has succeeded. My question applied in the context where process goes to sleep when the qdisc queue is overflowed. -- Eric