svn commit: r202498 - stable/8/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Jan 17 17:46:49 UTC 2010


Author: tuexen
Date: Sun Jan 17 17:46:48 2010
New Revision: 202498
URL: http://svn.freebsd.org/changeset/base/202498

Log:
  MFC 199374
  
  Fix a bug where queued ASCONF messags are not sent out.
  From Irene Ruengeler.

Modified:
  stable/8/sys/netinet/sctp_output.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/sctp_output.c
==============================================================================
--- stable/8/sys/netinet/sctp_output.c	Sun Jan 17 17:45:09 2010	(r202497)
+++ stable/8/sys/netinet/sctp_output.c	Sun Jan 17 17:46:48 2010	(r202498)
@@ -9442,6 +9442,7 @@ sctp_chunk_output(struct sctp_inpcb *inp
 
 	if ((un_sent <= 0) &&
 	    (TAILQ_EMPTY(&asoc->control_send_queue)) &&
+	    (TAILQ_EMPTY(&asoc->asconf_send_queue)) &&
 	    (asoc->sent_queue_retran_cnt == 0)) {
 		/* Nothing to do unless there is something to be sent left */
 		return;


More information about the svn-src-all mailing list