diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 4ed4b6919ac4..2e33a2fc1e83 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -1699,7 +1699,12 @@ restart_locked: goto out_unlock; } - if (unlikely(unix_peer(other) != sk && unix_recvq_full(other))) { + /* other == sk && unix_peer(other) != sk if + * - unix_peer(sk) == NULL, destination address bound to sk + * - unix_peer(sk) == sk by time of get but disconnected before lock + */ + if (other != sk && + unlikely(unix_peer(other) != sk && unix_recvq_full(other))) { if (timeo) { timeo = unix_wait_for_peer(other, timeo);