From owner-cvs-src@FreeBSD.ORG Thu Dec 6 00:22:56 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E047F16A417; Thu, 6 Dec 2007 00:22: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 D3EAA13C465; Thu, 6 Dec 2007 00:22:56 +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 lB60Mu4C080242; Thu, 6 Dec 2007 00:22:56 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lB60MuGo080241; Thu, 6 Dec 2007 00:22:56 GMT (envelope-from rrs) Message-Id: <200712060022.lB60MuGo080241@repoman.freebsd.org> From: Randall Stewart Date: Thu, 6 Dec 2007 00:22:56 +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_output.c sctputil.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Dec 2007 00:22:57 -0000 rrs 2007-12-06 00:22:55 UTC FreeBSD src repository Modified files: sys/netinet sctp_output.c sctputil.c Log: - optimize the initialization of the SB max variables. - Missing lock when sending data and moving it to the outqueue. - If a mbuf alloc fails during moving to outqueue the reassembly of the old mbuf chain was incorrect. - some_taken becomes a counter in sctputil.c instead of a set to 1. - Fix a panic to be only under invarients and have a proper recovery. - msg_flags needed to be set.to the value collected not or'd. MFC after: 1 week Revision Changes Path 1.65 +11 -7 src/sys/netinet/sctp_output.c 1.71 +9 -2 src/sys/netinet/sctputil.c