From owner-cvs-all@FreeBSD.ORG Sun Apr 15 11:58:27 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BDC7B16A402; Sun, 15 Apr 2007 11:58:27 +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 B010A13C44B; Sun, 15 Apr 2007 11:58:27 +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 l3FBwRql081062; Sun, 15 Apr 2007 11:58:27 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3FBwR0x081061; Sun, 15 Apr 2007 11:58:27 GMT (envelope-from rrs) Message-Id: <200704151158.l3FBwR0x081061@repoman.freebsd.org> From: Randall Stewart Date: Sun, 15 Apr 2007 11:58:26 +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_structs.h sctp_uio.h sctp_var.h sctputil.h 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: Sun, 15 Apr 2007 11:58:27 -0000 rrs 2007-04-15 11:58:26 UTC FreeBSD src repository Modified files: sys/netinet sctp_output.c sctp_structs.h sctp_uio.h sctp_var.h sctputil.h Log: - Add more comments to sctps_stats struture in sctp_uio.h - Fix bug that prevented EEOR mode from working and simplified the can_we_split code in the process. - Reduce lock contention for the tcb_send_lock. I did this especially for EEOR mode, still need to look at why I need a lock when removing from the tailq and the ->next is NOT null. A lock fixes it but it implies a bug yet exists. - Activated Andre's proposed changes to better use the mbuf infrastructure. - Fixed places that were not using the aloc macro's to take advantage of the per assoc cache. - Adds ifdef fix so any logging will enable stat_logging to get the right data structures in place (suggested by Max Laier). Revision Changes Path 1.18 +170 -218 src/sys/netinet/sctp_output.c 1.12 +1 -0 src/sys/netinet/sctp_structs.h 1.12 +72 -46 src/sys/netinet/sctp_uio.h 1.9 +2 -0 src/sys/netinet/sctp_var.h 1.11 +47 -1 src/sys/netinet/sctputil.h