From owner-cvs-src@FreeBSD.ORG Fri Jun 8 10:57:13 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 64CB616A400; Fri, 8 Jun 2007 10:57:13 +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 54A5513C457; Fri, 8 Jun 2007 10:57:13 +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 l58AvDwq038758; Fri, 8 Jun 2007 10:57:13 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l58AvD2L038745; Fri, 8 Jun 2007 10:57:13 GMT (envelope-from rrs) Message-Id: <200706081057.l58AvD2L038745@repoman.freebsd.org> From: Randall Stewart Date: Fri, 8 Jun 2007 10:57:12 +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_asconf.c sctp_input.c sctp_pcb.c sctp_timer.h 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, 08 Jun 2007 10:57:13 -0000 rrs 2007-06-08 10:57:12 UTC FreeBSD src repository Modified files: sys/netinet sctp_asconf.c sctp_input.c sctp_pcb.c sctp_timer.h sctputil.c Log: - RTO was not being initialized to 0, thus the rtt calculation algoritm would not go through the proper initialization. - The initialization was incorrect as well, causing problems in sat networks with > 1sec RTT - Get rid of magic numbers in RTT calculations. Revision Changes Path 1.16 +1 -1 src/sys/netinet/sctp_asconf.c 1.34 +1 -1 src/sys/netinet/sctp_input.c 1.35 +5 -1 src/sys/netinet/sctp_pcb.c 1.4 +3 -0 src/sys/netinet/sctp_timer.h 1.38 +13 -6 src/sys/netinet/sctputil.c