From owner-svn-src-all@FreeBSD.ORG Wed Jun 17 02:42:00 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B54EE106564A; Wed, 17 Jun 2009 02:42:00 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail09.syd.optusnet.com.au (mail09.syd.optusnet.com.au [211.29.132.190]) by mx1.freebsd.org (Postfix) with ESMTP id CF4078FC17; Wed, 17 Jun 2009 02:41:59 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from besplex.bde.org (c122-106-159-184.carlnfd1.nsw.optusnet.com.au [122.106.159.184]) by mail09.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n5H2fsVb014510 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 17 Jun 2009 12:41:55 +1000 Date: Wed, 17 Jun 2009 12:41:54 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: John Baldwin In-Reply-To: <200906161858.n5GIwoM8040861@svn.freebsd.org> Message-ID: <20090617124103.P1530@besplex.bde.org> References: <200906161858.n5GIwoM8040861@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r194303 - head/sys/netinet X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2009 02:42:01 -0000 On Tue, 16 Jun 2009, John Baldwin wrote: > Author: jhb > Date: Tue Jun 16 18:58:50 2009 > New Revision: 194303 > URL: http://svn.freebsd.org/changeset/base/194303 > > Log: > - Change members of tcpcb that cache values of ticks from int to u_int: > t_rcvtime, t_starttime, t_rtttime, t_bw_rtttime, ts_recent_age, > t_badrxtwin. > - Change t_recent in struct timewait from u_long to u_int32_t to match > the type of the field it shadows from tcpcb: ts_recent. > - Change t_starttime in struct timewait from u_long to u_int to match > the t_starttime field in tcpcb. > > Requested by: bde (1, 3) Thanks. Bruce