[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <CALCETrUM1P0Sydps_4-5yPBOBD35zOcpACv-OX8b==xT0BC1xw@mail.gmail.com>
Date: Thu, 11 Sep 2014 08:11:38 -0700
From: Andy Lutomirski <luto@...capital.net>
To: Network Development <netdev@...r.kernel.org>
Subject: Why ECONNREFUSED from unix_dgram_sendmsg?
What is unix_dgram_sendmsg trying to tell me here?
if (sock_flag(other, SOCK_DEAD)) {
/*
* Check with 1003.1g - what should
* datagram error
*/
unix_state_unlock(other);
sock_put(other);
err = 0;
unix_state_lock(sk);
if (unix_peer(sk) == other) {
unix_peer(sk) = NULL;
unix_state_unlock(sk);
unix_dgram_disconnected(sk, other);
sock_put(other);
err = -ECONNREFUSED;
I'm getting this intermittently on a seqpacket socket when the other
end dies. Shouldn't this be -ECONNRESET?
git blame doesn't tell me anything here -- this code predates git.
--Andy
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists