From owner-cvs-all@FreeBSD.ORG Tue Dec 18 03:39:18 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E88816A417; Tue, 18 Dec 2007 03:39:18 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 13E6213C46B; Tue, 18 Dec 2007 03:39:18 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id lBI3dHaT018369; Tue, 18 Dec 2007 03:39:17 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lBI3dHlU018368; Tue, 18 Dec 2007 03:39:17 GMT (envelope-from peter) Message-Id: <200712180339.lBI3dHlU018368@repoman.freebsd.org> From: Peter Wemm Date: Tue, 18 Dec 2007 03:39:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet tcp_subr.c tcp_timer.h 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: Tue, 18 Dec 2007 03:39:18 -0000 peter 2007-12-18 03:39:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet tcp_subr.c tcp_timer.h Log: MFC: scale TCPTV_MIN with hz, not a fixed number of ticks. Otherwise machines with hz=1000 drop connections in a matter of a few seconds on a fast link (eg: ethernet). With this change, it drops them in the same time as a machine with hz=100 would. Revision Changes Path 1.228.2.16 +2 -0 src/sys/netinet/tcp_subr.c 1.27.2.4 +1 -1 src/sys/netinet/tcp_timer.h