From owner-cvs-all@FreeBSD.ORG Sat Apr 14 09:44:10 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 C6AB116A401; Sat, 14 Apr 2007 09:44:10 +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 BAF1E13C4BC; Sat, 14 Apr 2007 09:44:10 +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 l3E9iACT016159; Sat, 14 Apr 2007 09:44:10 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3E9iApu016158; Sat, 14 Apr 2007 09:44:10 GMT (envelope-from rrs) Message-Id: <200704140944.l3E9iApu016158@repoman.freebsd.org> From: Randall Stewart Date: Sat, 14 Apr 2007 09:44:10 +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/netinet6 sctp6_usrreq.c src/sys/netinet sctp_constants.h sctp_crc32.c sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_peeloff.c sctp_timer.c sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c 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: Sat, 14 Apr 2007 09:44:10 -0000 rrs 2007-04-14 09:44:10 UTC FreeBSD src repository Modified files: sys/netinet6 sctp6_usrreq.c sys/netinet sctp_constants.h sctp_crc32.c sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_peeloff.c sctp_timer.c sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c Log: - fix source address selection when picking an acceptable address - name change of prefered -> preferred - CMT fast recover code added. - Comment fixes in CMT. - We were not giving a reason of cant_start_asoc per socket api if we failed to get init/or/cookie to bring up an assoc. Change so we don't just give a generic "comm lost" but look at actual states of dying assoc. - change "crc32" arguments to "crc32c" to silence strict/noisy compiler warnings when crc32() is also declared - A few minor tweaks to get the portable stuff truely portable for sctp6_usrreq.c :-D - one-2-one style vrf match problem. - window recovery would leave chks marked for retran during window probes on the sent queue. This would then cause an out-of-order problem and assure that the flight size "problem" would occur. - Solves a flight size logging issue that caused rwnd overruns, flight size off as well as false retransmissions.g - Macroize the up and down of flight size. - Fix a ECNE bug in its counting. - The strict_sacks options was causing aborts when window probing was active, fix to make strict sacks a bit smarter about what the next unsent TSN is. - Fixes a one-2-one wakeup bug found by Martin Kulas. - If-defed out form, Andre's copy routines pending his commit of at least m_last().. need to adjust for 6.2 as well.. since m_last won't exist. Reviewed by: gnn Revision Changes Path 1.11 +10 -2 src/sys/netinet/sctp_constants.h 1.7 +11 -11 src/sys/netinet/sctp_crc32.c 1.15 +197 -220 src/sys/netinet/sctp_indata.c 1.18 +3 -17 src/sys/netinet/sctp_input.c 1.17 +118 -92 src/sys/netinet/sctp_output.c 1.19 +20 -4 src/sys/netinet/sctp_pcb.c 1.6 +2 -0 src/sys/netinet/sctp_peeloff.c 1.11 +54 -42 src/sys/netinet/sctp_timer.c 1.11 +3 -2 src/sys/netinet/sctp_uio.h 1.17 +9 -11 src/sys/netinet/sctp_usrreq.c 1.8 +51 -0 src/sys/netinet/sctp_var.h 1.19 +11 -3 src/sys/netinet/sctputil.c 1.15 +21 -27 src/sys/netinet6/sctp6_usrreq.c