Messages in this thread |  | | Date | Mon, 30 Oct 2000 15:24:34 -0800 (PST) | From | dean gaudet <> | Subject | Re: [PATCH] Re: Negative scalability by removal of lock_kernel()?(Was: Strange performance behavior of 2.4.0-test9) |
| |
On Tue, 31 Oct 2000, Andrew Morton wrote:
> Dean, it looks like the same problem will occur with flock()-based > serialisation. Does Apache/Linux ever use that option?
from apache/src/include/ap_config.h in the linux section there's this:
/* flock is faster ... but hasn't been tested on 1.x systems */ /* PR#3531 indicates flock() may not be stable, probably depends on * kernel version. Go back to using fcntl, but provide a way for * folks to tweak their Configuration to get flock. */ #ifndef USE_FLOCK_SERIALIZED_ACCEPT #define USE_FCNTL_SERIALIZED_ACCEPT #endif
so you should be able to -DUSE_FLOCK_SERIALIZED_ACCEPT to try it.
(flock is less desirable than fcntl in general because it requires the lock file to be kept around for the duration of the server, you can't unlock() it immediately after creat().)
-dean
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |