From owner-cvs-src@FreeBSD.ORG Fri Dec 7 01:32:14 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 B205516A41A; Fri, 7 Dec 2007 01:32:14 +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 8B10213C457; Fri, 7 Dec 2007 01:32:14 +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 lB71WE59017245; Fri, 7 Dec 2007 01:32:14 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lB71WE5s017244; Fri, 7 Dec 2007 01:32:14 GMT (envelope-from rrs) Message-Id: <200712070132.lB71WE5s017244@repoman.freebsd.org> From: Randall Stewart Date: Fri, 7 Dec 2007 01:32:14 +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 sctp_usrreq.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: Fri, 07 Dec 2007 01:32:14 -0000 rrs 2007-12-07 01:32:14 UTC FreeBSD src repository Modified files: sys/netinet sctp_output.c sctp_usrreq.c sctputil.c Log: - More fixes for lock misses on the transfer of data to the sent_queue. Sometimes I wonder why any code ever works :-) - Fix the pad of the last mbuf routine, It was working improperly on non-4 byte aligned chunks which could cause memory overruns. MFC after: 1 week Revision Changes Path 1.66 +120 -104 src/sys/netinet/sctp_output.c 1.52 +5 -0 src/sys/netinet/sctp_usrreq.c 1.72 +2 -2 src/sys/netinet/sctputil.c