Re: [PATCH RFC] net/unix: SO_REUSEPORT for AF_UNIX

2015-06-29 Thread Conrad Hoffmann
Hi, On 06/29/2015 06:05 AM, Alex Gartrell wrote: > On Sun, Jun 28, 2015 at 2:52 AM, Conrad Hoffmann wrote: >> Support the SO_REUSEPORT option for AF_UNIX (aka AF_LOCAL) sockets. Note >> that unlike the IP implementations, the semantics for AF_UNIX sockets are >> thos

[PATCH RFC] net/unix: SO_REUSEPORT for AF_UNIX

2015-06-28 Thread Conrad Hoffmann
same behaviour without dropping a single connection by using SO_REUSEPORT and not calling unlink() before bind(). The restrictions on this are the same as for the IP implementation: listening socket on the given path must exist, also have SO_REUSEPORT set and have the same uid. Signed-off-by: C