From owner-svn-src-stable-8@FreeBSD.ORG Sat May 28 08:24:22 2011 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E21FE106564A; Sat, 28 May 2011 08:24:22 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D15C28FC15; Sat, 28 May 2011 08:24:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p4S8OM4n075255; Sat, 28 May 2011 08:24:22 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p4S8OM2H075253; Sat, 28 May 2011 08:24:22 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201105280824.p4S8OM2H075253@svn.freebsd.org> From: Lawrence Stewart Date: Sat, 28 May 2011 08:24:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r222410 - in stable/8/sys: modules/khelp modules/khelp/h_ertt netinet/khelp X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 May 2011 08:24:23 -0000 Author: lstewart Date: Sat May 28 08:24:22 2011 New Revision: 222410 URL: http://svn.freebsd.org/changeset/base/222410 Log: MFC 217806: Import the ERTT (Enhanced Round Trip Time) Khelp module. ERTT uses the Khelp/Hhook KPIs to hook into the TCP stack and maintain a per-connection, low noise estimate of the instantaneous RTT. ERTT's implementation is robust even in the face of delayed acknowledgements and/or TSO being in use for a connection. A high quality, low noise RTT estimate is a requirement for applications such as delay-based congestion control, for which we will be importing some algorithm implementations shortly. In collaboration with: David Hayes and Grenville Armitage Sponsored by: FreeBSD Foundation Reviewed by: bz and others along the way Added: stable/8/sys/modules/khelp/h_ertt/ - copied from r217806, head/sys/modules/khelp/h_ertt/ stable/8/sys/netinet/khelp/ - copied from r217806, head/sys/netinet/khelp/ Modified: stable/8/sys/modules/khelp/Makefile Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) Modified: stable/8/sys/modules/khelp/Makefile ============================================================================== --- stable/8/sys/modules/khelp/Makefile Sat May 28 08:20:25 2011 (r222409) +++ stable/8/sys/modules/khelp/Makefile Sat May 28 08:24:22 2011 (r222410) @@ -1,5 +1,5 @@ # $FreeBSD$ -SUBDIR= +SUBDIR= h_ertt .include