From owner-cvs-src-old@FreeBSD.ORG Sat Jul 3 14:03:56 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8ED1010656C2 for ; Sat, 3 Jul 2010 14:03:56 +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 7DEE88FC0C for ; Sat, 3 Jul 2010 14:03:56 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o63E3uZL021838 for ; Sat, 3 Jul 2010 14:03:56 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o63E3uUi021837 for cvs-src-old@freebsd.org; Sat, 3 Jul 2010 14:03:56 GMT (envelope-from rrs@repoman.freebsd.org) Message-Id: <201007031403.o63E3uUi021837@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rrs@repoman.freebsd.org using -f From: Randall Stewart Date: Sat, 3 Jul 2010 14:03:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet sctputil.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jul 2010 14:03:56 -0000 rrs 2010-07-03 14:03:31 UTC FreeBSD src repository Modified files: sys/netinet sctputil.c Log: SVN rev 209663 on 2010-07-03 14:03:31Z by rrs This fixes a crash in SCTP. It was possible to have a large number of packets queued to a crashing process. In a specific case you may get 2 ABORT's back (from say two packets in flight). If the aborts happened to be processed at the same time its possible to have one free the association while the other is trying to report all the outbound packets. When this occured it could lead to a crash. MFC after: 3 days Revision Changes Path 1.114 +10 -4 src/sys/netinet/sctputil.c