From owner-freebsd-net@FreeBSD.ORG Wed Sep 8 23:32:46 2004 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 328E816A4CE for ; Wed, 8 Sep 2004 23:32:46 +0000 (GMT) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1449F43D45 for ; Wed, 8 Sep 2004 23:32:46 +0000 (GMT) (envelope-from gnn@neville-neil.com) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) i88NVYr4020161; Wed, 8 Sep 2004 16:31:36 -0700 (PDT) (envelope-from gnn@neville-neil.com) Received: from minion.local.neville-neil.com (pc1.oakwoodazabu1-unet.ocn.ne.jp [220.110.140.201]) by mail.meer.net (8.12.1/8.12.2/meer) with ESMTP id i88NVXlL006634; Wed, 8 Sep 2004 16:31:33 -0700 (PDT) (envelope-from gnn@neville-neil.com) Date: Thu, 09 Sep 2004 08:31:31 +0900 Message-ID: From: "George V. Neville-Neil" To: Julian Elischer In-Reply-To: <413F54EE.1020700@elischer.org> References: <413F54EE.1020700@elischer.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.5 Emacs/21.2 (powerpc-apple-darwin) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: net@freebsd.org Subject: Re: [Fwd: TCP RTO] X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Sep 2004 23:32:46 -0000 At Wed, 08 Sep 2004 11:52:30 -0700, julian wrote: > My curiosity is if we see the tcp.cc code inside, tcp.cc ? That's not a kernel file. > there are two different version of srtt (smoothed rtt) and rttvar > (smoothed mean deviation estimator). The one is simply 'srtt' and > 'rttvar' and the other is 't_srtt' and 't_rttvar'. The unit of > t_srtt is 'ticks * 8' and the unit of t_rttvar is 'ticks * 4'. In -CURRENT, and I would suspect most recent versions of FreeBSD, the only variables I find are t_srtt and t_rttvar which are used as fixed point values. srtt and rttvar were variables used in the older (BSD 4.4?) code. I believe they were documented in Steven's TCP/IP Illustrated Volume 2 but I don't have my copy here so I can't check. Later, George