Date: Sun, 18 Dec 2016 12:52:53 +0000 (UTC) From: Michael Tuexen <tuexen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r310216 - stable/11/sys/netinet Message-ID: <201612181252.uBICqrLm070207@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tuexen Date: Sun Dec 18 12:52:52 2016 New Revision: 310216 URL: https://svnweb.freebsd.org/changeset/base/310216 Log: MFC r307217: Mark the socket as un-writable when it is 1-to-1 and the SCTP association is freed. Modified: stable/11/sys/netinet/sctp_pcb.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/netinet/sctp_pcb.c ============================================================================== --- stable/11/sys/netinet/sctp_pcb.c Sun Dec 18 12:49:24 2016 (r310215) +++ stable/11/sys/netinet/sctp_pcb.c Sun Dec 18 12:52:52 2016 (r310216) @@ -4870,6 +4870,7 @@ sctp_free_assoc(struct sctp_inpcb *inp, SS_ISCONNECTED); } socantrcvmore_locked(so); + socantsendmore(so); sctp_sowwakeup(inp, so); sctp_sorwakeup(inp, so); SCTP_SOWAKEUP(so);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612181252.uBICqrLm070207>