s3: Fix starving the echo responder
commitd5cf6482ed0cd9a11448ca04944b2e01200a7c89
authorVolker Lendecke <vl@samba.org>
Tue, 8 Jun 2010 12:33:05 +0000 (8 14:33 +0200)
committerVolker Lendecke <vl@samba.org>
Fri, 11 Jun 2010 08:58:54 +0000 (11 10:58 +0200)
tree5de7b219194bc76d54c9a55630fd5a0c892f7ef9
parentb61fa4b67686aa5df69c28ca86d8d26aaa3ba9d4
s3: Fix starving the echo responder

When both the echo responder and the 445 socket want to send stuff to the
worker smbd, the select loop is not fair. It always chooses the smaller file
descriptor to work on. This can mean that on a busy system the echo responder
never gets around to feed its stuff to the parent.

This fix chooses the async echo responder socket when both the 445 and the echo
responder socket are readable.

Yes, it is a very hackish fix which is required *now* I think. The proper fix
would be to either assign priorities to fd's in tevent, or the from my point of
view better fix would be to make tevent kindof round-robin.

Round-robin would mean that whenever a fd has been dealt with, it is taken off
the list of interested sockets, and only if no other socket is active, all of
the ones waiting are put back. This is a bit like EPOLL_ONESHOT, which I would
like to use for this in the epoll case. Although, I need to do some research if
maybe epoll already guarantees round-robin, I did not find anything in the docs
yet.

Volker
source3/smbd/process.c