Re: [PATCH net] vsock: avoid timeout during connect() if the socket is closing

2025-04-02 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Fri, 28 Mar 2025 15:15:28 +0100 you wrote: > From: Stefano Garzarella > > When a peer attempts to establish a connection, vsock_connect() contains > a loop that waits for the state to be TCP_ESTABLISHED. However, the

Re: [PATCH net] vsock: avoid timeout during connect() if the socket is closing

2025-04-01 Thread Luigi Leonardi
On Fri, Mar 28, 2025 at 03:15:28PM +0100, Stefano Garzarella wrote: From: Stefano Garzarella When a peer attempts to establish a connection, vsock_connect() contains a loop that waits for the state to be TCP_ESTABLISHED. However, the other peer can be fast enough to accept the connection and cl

Re: [PATCH net] vsock: avoid timeout during connect() if the socket is closing

2025-04-01 Thread Paolo Abeni
On 3/28/25 3:15 PM, Stefano Garzarella wrote: > From: Stefano Garzarella > > When a peer attempts to establish a connection, vsock_connect() contains > a loop that waits for the state to be TCP_ESTABLISHED. However, the > other peer can be fast enough to accept the connection and close it > immed

[PATCH net] vsock: avoid timeout during connect() if the socket is closing

2025-03-28 Thread Stefano Garzarella
From: Stefano Garzarella When a peer attempts to establish a connection, vsock_connect() contains a loop that waits for the state to be TCP_ESTABLISHED. However, the other peer can be fast enough to accept the connection and close it immediately, thus moving the state to TCP_CLOSING. When this h