Re: Sendfile implementation details

2006-01-31 Thread Chase Douglas
David S. Miller wrote: From: Chase Douglas <[EMAIL PROTECTED]> Date: Mon, 30 Jan 2006 13:55:21 -0500 I have a question about the implementation of sendfile. In my current configuration of a server, when requests are made for a file, a new thread is spawned and sendfile is called to complet

Re: Sendfile implementation details

2006-01-30 Thread David S. Miller
From: Chase Douglas <[EMAIL PROTECTED]> Date: Mon, 30 Jan 2006 13:55:21 -0500 > I have a question about the implementation of sendfile. In my current > configuration of a server, when requests are made for a file, a new > thread is spawned and sendfile is called to complete the request (We > re

Re: Sendfile implementation details

2006-01-30 Thread Rick Jones
Chase Douglas wrote: I have a question about the implementation of sendfile. In my current configuration of a server, when requests are made for a file, a new thread is spawned and sendfile is called to complete the request (We realize that spawning a thread for every request is a bad way to do