From owner-cvs-src@FreeBSD.ORG Thu Apr 19 11:28:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 974A116A400; Thu, 19 Apr 2007 11:28:44 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 887F613C458; Thu, 19 Apr 2007 11:28:44 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3JBSiMV075970; Thu, 19 Apr 2007 11:28:44 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3JBSiw3075969; Thu, 19 Apr 2007 11:28:44 GMT (envelope-from rrs) Message-Id: <200704191128.l3JBSiw3075969@repoman.freebsd.org> From: Randall Stewart Date: Thu, 19 Apr 2007 11:28: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_indata.c sctp_input.c sctp_lock_bsd.h sctp_output.c sctp_pcb.c sctp_structs.h sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c sctputil.h 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, 19 Apr 2007 11:28:44 -0000 rrs 2007-04-19 11:28:43 UTC FreeBSD src repository Modified files: sys/netinet sctp_indata.c sctp_input.c sctp_lock_bsd.h sctp_output.c sctp_pcb.c sctp_structs.h sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c sctputil.h Log: - More work on making send lock contention. - Removed free-oqueue cache. - Fix counter for sq entries - Increased the amount of information retained on ASOC_TSN logging on the association. - Made it so with the ASOC_TSN logging on sending or recieving an abort we dump the log. - Went through and added invariant's around some panic's that needed them. - decrements went to atomic_subtact_int instead of add -1 - Removed residual count increment that threw off a strm oq count. - Tracks and complaints if we don't have a LAST fragment and clean up the sp structure. - Track a new stat that counts number of abandoned msgs that happen if you close without reading. - Fix lookup of frag point to be aware of a 0 assoc-id. Reviewed by: gnn Revision Changes Path 1.17 +15 -4 src/sys/netinet/sctp_indata.c 1.19 +3 -0 src/sys/netinet/sctp_input.c 1.5 +8 -11 src/sys/netinet/sctp_lock_bsd.h 1.19 +97 -34 src/sys/netinet/sctp_output.c 1.20 +4 -13 src/sys/netinet/sctp_pcb.c 1.13 +5 -3 src/sys/netinet/sctp_structs.h 1.13 +2 -0 src/sys/netinet/sctp_uio.h 1.18 +5 -1 src/sys/netinet/sctp_usrreq.c 1.10 +6 -21 src/sys/netinet/sctp_var.h 1.20 +64 -1 src/sys/netinet/sctputil.c 1.13 +5 -0 src/sys/netinet/sctputil.h