Re: [libvirt] [PATCH 2/2] Introduce max_queued_clients

2013-07-25 Thread Daniel P. Berrange
On Thu, Jul 25, 2013 at 04:44:57PM +0200, Michal Privoznik wrote: > On 25.07.2013 16:34, Daniel P. Berrange wrote: > > On Thu, Jul 25, 2013 at 04:23:33PM +0200, Michal Privoznik wrote: > >> This configuration knob lets user to set the length of queue of > >> connection requests waiting to be accept

Re: [libvirt] [PATCH 2/2] Introduce max_queued_clients

2013-07-25 Thread Michal Privoznik
On 25.07.2013 16:34, Daniel P. Berrange wrote: > On Thu, Jul 25, 2013 at 04:23:33PM +0200, Michal Privoznik wrote: >> This configuration knob lets user to set the length of queue of >> connection requests waiting to be accept()-ed by the daemon. IOW, it >> just controls the @backlog passed to liste

Re: [libvirt] [PATCH 2/2] Introduce max_queued_clients

2013-07-25 Thread Daniel P. Berrange
On Thu, Jul 25, 2013 at 04:23:33PM +0200, Michal Privoznik wrote: > This configuration knob lets user to set the length of queue of > connection requests waiting to be accept()-ed by the daemon. IOW, it > just controls the @backlog passed to listen: > > int listen(int sockfd, int backlog); > ---

[libvirt] [PATCH 2/2] Introduce max_queued_clients

2013-07-25 Thread Michal Privoznik
This configuration knob lets user to set the length of queue of connection requests waiting to be accept()-ed by the daemon. IOW, it just controls the @backlog passed to listen: int listen(int sockfd, int backlog); --- daemon/libvirtd-config.c | 1 + daemon/libvirtd-config.h | 1 + da