From owner-cvs-all@FreeBSD.ORG Fri Sep 15 09:51:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 9EC0616A403; Fri, 15 Sep 2006 09:51:18 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43FFB43D91; Fri, 15 Sep 2006 09:51:06 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8F9p6p1069345; Fri, 15 Sep 2006 09:51:06 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8F9p6p4069344; Fri, 15 Sep 2006 09:51:06 GMT (envelope-from glebius) Message-Id: <200609150951.k8F9p6p4069344@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 15 Sep 2006 09:51:06 +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 in_pcb.c tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.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: Fri, 15 Sep 2006 09:51:18 -0000 glebius 2006-09-15 09:51:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet in_pcb.c tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.h Log: Merge a bunch of changes to TCP compressed TIME_WAIT state handling that was done by myself and ru@ in HEAD: o Remove a code from in in_pcblookup_local() that can lead to million times looping in this function. o Rewrite the storage of tcptw entries to simple TAILQ. The more complex double LIST is not needed anymore since T/TCP is removed. o Add possibility to change net.inet.tcp.maxtcptw via sysctl and load time tunable. Do not modify maxtcptw if it was set explicitly, if maxsockets is modified. o Add sysctl that allows to suppress creating time wait states for sockets, where both endpoints are local. Approved by: re (kensmith) Revision Changes Path 1.165.2.5 +0 -13 src/sys/netinet/in_pcb.c 1.281.2.10 +2 -2 src/sys/netinet/tcp_input.c 1.228.2.10 +49 -13 src/sys/netinet/tcp_subr.c 1.74.2.5 +20 -41 src/sys/netinet/tcp_timer.c 1.27.2.3 +1 -1 src/sys/netinet/tcp_timer.h 1.126.2.2 +1 -1 src/sys/netinet/tcp_var.h