From owner-cvs-all@FreeBSD.ORG Sat Sep 15 19:07:43 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B360216A417; Sat, 15 Sep 2007 19:07:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 987D613C480; Sat, 15 Sep 2007 19:07:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FJ7hND095594; Sat, 15 Sep 2007 19:07:43 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FJ7hPp095593; Sat, 15 Sep 2007 19:07:43 GMT (envelope-from rrs) Message-Id: <200709151907.l8FJ7hPp095593@repoman.freebsd.org> From: Randall Stewart Date: Sat, 15 Sep 2007 19:07:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_input.c sctp_output.c sctp_output.h sctp_sysctl.h sctp_timer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Sep 2007 19:07:43 -0000 rrs 2007-09-15 19:07:42 UTC FreeBSD src repository Modified files: sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_input.c sctp_output.c sctp_output.h sctp_sysctl.h sctp_timer.c Log: - Get rid of unsused constants for sysctl variables. - Fix panic from mutex unlock on freed lock when ASCONF-ACK aborts an assoc - Fix panic from addr lock recursion when ASCONFs are queued in the front states - ASCONFs "queued" in the front states should really be bundled after the COOKIE-ACK, not in front of it - Fix issue with addresses deleted in the front states from being sent with ASCONF(DELETE)-- replaced sctp_asconf_queue_add_sa() with delete specific function - Comment change in sctp.h the drafts are now RFC's Approved by: re@freebsd.org (B Mah) Revision Changes Path 1.21 +5 -5 src/sys/netinet/sctp.h 1.32 +76 -73 src/sys/netinet/sctp_asconf.c 1.10 +3 -3 src/sys/netinet/sctp_asconf.h 1.63 +18 -10 src/sys/netinet/sctp_input.c 1.56 +2 -2 src/sys/netinet/sctp_output.c 1.12 +1 -1 src/sys/netinet/sctp_output.h 1.13 +0 -56 src/sys/netinet/sctp_sysctl.h 1.31 +1 -1 src/sys/netinet/sctp_timer.c