From: David S. Miller Date: Tue, 7 Nov 2023 22:27:07 +0000 (+0000) Subject: Merge branch 'vsock-fixes' X-Git-Tag: configfs-6.13-2024-11-19~2735^2~15 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=97b94329126823d58550f4699d91e2536d4b6e91;p=users%2Fhch%2Fconfigfs.git Merge branch 'vsock-fixes' Filippo Storniolo says: ==================== vsock: fix server prevents clients from reconnecting This patch series introduce fix and tests for the following vsock bug: If the same remote peer, using the same port, tries to connect to a server on a listening port more than once, the server will reject the connection, causing a "connection reset by peer" error on the remote peer. This is due to the presence of a dangling socket from a previous connection in both the connected and bound socket lists. The inconsistency of the above lists only occurs when the remote peer disconnects and the server remains active. This bug does not occur when the server socket is closed. More details on the first patch changelog. The remaining patches are refactoring and test. ==================== Signed-off-by: David S. Miller --- 97b94329126823d58550f4699d91e2536d4b6e91