From owner-svn-src-head@FreeBSD.ORG Sun Oct 28 21:03:12 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C4909883; Sun, 28 Oct 2012 21:03:12 +0000 (UTC) (envelope-from rpaulo@felyko.com) Received: from felyko.com (unknown [IPv6:2607:f2f8:a528::3:1337:ca7]) by mx1.freebsd.org (Postfix) with ESMTP id A068C8FC08; Sun, 28 Oct 2012 21:03:12 +0000 (UTC) Received: from [IPv6:2601:9:4d00:85:8077:b284:3e1f:accb] (unknown [IPv6:2601:9:4d00:85:8077:b284:3e1f:accb]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by felyko.com (Postfix) with ESMTPSA id 2E92E3982B; Sun, 28 Oct 2012 14:03:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=felyko.com; s=mail; t=1351458192; bh=URM/acX16cZwBkt6t1nHy3LiOxz1X5pVaXfJNOMFTiQ=; h=Subject:From:In-Reply-To:Date:Cc:References:To; b=DxkdXhEFMuRDWkNyudg6x2yvOn+cWZlEy0U+6WIzo2mzo0gVRBAgihThiMpGXgSAG VlJAqbN9jZvaO0QvEF9rSyicfVuf5ksd0SDqpSLDSe8+MzqiG83C630IOx0Ru67ZGe a5f8+VOymN8LDcxSDKpL6kmSGCWSXMCYxY+apaSg= Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: svn commit: r242266 - head/sys/netinet From: Rui Paulo In-Reply-To: <201210281947.q9SJlku2085767@svn.freebsd.org> Date: Sun, 28 Oct 2012 14:03:08 -0700 Content-Transfer-Encoding: 7bit Message-Id: <4532DEB1-4EFE-4E4B-BE1F-A99FFC58DBA3@felyko.com> References: <201210281947.q9SJlku2085767@svn.freebsd.org> To: Andre Oppermann X-Mailer: Apple Mail (2.1499) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2012 21:03:12 -0000 On 28 Oct 2012, at 12:47, Andre Oppermann wrote: > Author: andre > Date: Sun Oct 28 19:47:46 2012 > New Revision: 242266 > URL: http://svn.freebsd.org/changeset/base/242266 > > Log: > Increase the initial CWND to 10 segments as defined in IETF TCPM > draft-ietf-tcpm-initcwnd-05. It explains why the increased initial > window improves the overall performance of many web services without > risking congestion collapse. > > As long as it remains a draft it is placed under a sysctl marking it > as experimental: > net.inet.tcp.experimental.initcwnd10 = 1 > When it becomes an official RFC soon the sysctl will be changed to > the RFC number and moved to net.inet.tcp. > > This implementation differs from the RFC draft in that it is a bit > more conservative in the case of packet loss on SYN or SYN|ACK because > we haven't reduced the default RTO to 1 second yet. Also the restart > window isn't yet increased as allowed. Both will be adjusted with > upcoming changes. > > Is is enabled by default. In Linux it is enabled since kernel 3.0. Didn't you also forget to point out the problems associated with it? http://tools.ietf.org/html/draft-gettys-iw10-considered-harmful-00 Regards, -- Rui Paulo