svn commit: r215585 - stable/8/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Sat Nov 20 19:39:02 UTC 2010
Author: tuexen
Date: Sat Nov 20 19:39:02 2010
New Revision: 215585
URL: http://svn.freebsd.org/changeset/base/215585
Log:
MFC r215035:
Fix a bug which resulted in kevent() reporting an event twice on
1-to-1 style sockets when an ABORT was received.
Modified:
stable/8/sys/netinet/sctputil.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/netinet/sctputil.c
==============================================================================
--- stable/8/sys/netinet/sctputil.c Sat Nov 20 19:37:33 2010 (r215584)
+++ stable/8/sys/netinet/sctputil.c Sat Nov 20 19:39:02 2010 (r215585)
@@ -2826,6 +2826,7 @@ sctp_notify_assoc_change(uint32_t event,
}
}
#endif
+ socantrcvmore(stcb->sctp_socket);
sorwakeup(stcb->sctp_socket);
sowwakeup(stcb->sctp_socket);
#if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
More information about the svn-src-stable
mailing list