From owner-cvs-all@FreeBSD.ORG Sun Feb 13 21:35:54 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED39716A4CE; Sun, 13 Feb 2005 21:35:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2FFC43D41; Sun, 13 Feb 2005 21:35:54 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1DLZspe035189; Sun, 13 Feb 2005 21:35:54 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1DLZsbQ035188; Sun, 13 Feb 2005 21:35:54 GMT (envelope-from rwatson) Message-Id: <200502132135.j1DLZsbQ035188@repoman.freebsd.org> From: Robert Watson Date: Sun, 13 Feb 2005 21:35:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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, 13 Feb 2005 21:35:55 -0000 rwatson 2005-02-13 21:35:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet tcp_subr.c Log: Merge tcp_subr.c:1.216-1.217 from HEAD to RELENG_5: date: 2005/01/30 23:30:28; author: rwatson; state: Exp; lines: +1 -1 Have tcp_isn_tick() fire 100 times a second, rather than HZ times a second; since the default hz has changed to 1000 times a second, this resulted in unecessary work being performed. Discussed with: phk, cperciva General head nod: silby date: 2005/01/31 01:35:01; author: rwatson; state: Exp; lines: +1 -1 Update an additional reference to the rate of ISN tick callouts that was missed in tcp_subr.c:1.216: projected_offset must also reflect how often the tcp_isn_tick() callout will fire. Submitted by: silby Note that although the default has not changed for HZ on i386 in RELENG_5, many sites run with elevated HZ for the purposes of DUMMYNET, etc. This will reduce the CPU overhead of this. Revision Changes Path 1.201.2.13 +2 -2 src/sys/netinet/tcp_subr.c