Hiten Pandya wrote:
> --- Peter Wemm <[EMAIL PROTECTED]> wrote:
> > The only real problem that I know of with postfix is that it still
> > suffers from select(2) collisions (FreeBSD kernel problem) when it tries
> > to shut down a bunch of idle smtp senders.  That can cause transient load
> > average spikes - this can be a bit alarming but doesn't actually affect 
> > things very much.
> 
> Just wondering, are these the kind of problems which can be solved by
> using the kqueue(2) mechanism, or am I talking nuts again?
> 
> Regards.

Yes, kqueue solves it nicely.  I overestimated the work required.  In
fact, it looks like it would be quite easy to do.  There are three places
that need work.
src/util/events.c  (the main event loop, keeps a persistent select mast)
src/util/readable.c (quick select-until-readable)
src/util/writable.c (quick select-until-writable)

events.c is practically begging to be converted to kqueue as it has
explicit init/register/unregister/loop type operation that allows callers
to register/unregister callbacks for given fd's when they become readable
or writable.  This is the exact scenario that kqueue is ideal for.

The other two are not heavily used and could quickly whip up their own mini
kqueue for the task.

Cheers,
-Peter
--
Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
"All of this is for nothing if we don't go to the stars" - JMS/B5


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to