Date: Sun, 17 Jan 2010 17:46:49 +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-8@freebsd.org Subject: svn commit: r202498 - stable/8/sys/netinet Message-ID: <201001171746.o0HHknnL098216@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001171746.o0HHknnL098216>