Re: [ovs-dev] [PATCH] socket: Increase listen backlog to 64 everywhere.

2024-04-23 Thread Simon Horman
On Fri, Apr 12, 2024 at 10:33:18AM +0100, Simon Horman wrote: > On Fri, Apr 12, 2024 at 02:45:17AM +, Ihar Hrachyshka wrote: > > Before the patch, the size of the backlog depended on the type of socket > > (UNIX vs INET) as well as on the language (C vs Python), specifically: > > > > - python

Re: [ovs-dev] [PATCH] socket: Increase listen backlog to 64 everywhere.

2024-04-12 Thread Simon Horman
On Fri, Apr 12, 2024 at 02:45:17AM +, Ihar Hrachyshka wrote: > Before the patch, the size of the backlog depended on the type of socket > (UNIX vs INET) as well as on the language (C vs Python), specifically: > > - python used backlog size = 10 for all sockets; > - C used 64 for UNIX sockets

[ovs-dev] [PATCH] socket: Increase listen backlog to 64 everywhere.

2024-04-11 Thread Ihar Hrachyshka
Before the patch, the size of the backlog depended on the type of socket (UNIX vs INET) as well as on the language (C vs Python), specifically: - python used backlog size = 10 for all sockets; - C used 64 for UNIX sockets but 10 for INET sockets. This consolidates the values across the board. It