From owner-cvs-src@FreeBSD.ORG Thu Sep 7 13:06:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A1216A4DE; Thu, 7 Sep 2006 13:06:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E03F43D4C; Thu, 7 Sep 2006 13:06:04 +0000 (GMT) (envelope-from ru@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 k87D61CB008815; Thu, 7 Sep 2006 13:06:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k87D61RP008814; Thu, 7 Sep 2006 13:06:01 GMT (envelope-from ru) Message-Id: <200609071306.k87D61RP008814@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 7 Sep 2006 13:06:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Sep 2006 13:06:13 -0000 ru 2006-09-07 13:06:01 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.h Log: Back when we had T/TCP support, we used to apply different timeouts for TCP and T/TCP connections in the TIME_WAIT state, and we had two separate timed wait queues for them. Now that is has gone, the timeout is always 2*MSL again, and there is no reason to keep two queues (the first was unused anyway!). Also, reimplement the remaining queue using a TAILQ (it was technically impossible before, with two queues). Revision Changes Path 1.306 +2 -2 src/sys/netinet/tcp_input.c 1.261 +2 -3 src/sys/netinet/tcp_subr.c 1.85 +20 -43 src/sys/netinet/tcp_timer.c 1.30 +1 -1 src/sys/netinet/tcp_timer.h 1.136 +1 -1 src/sys/netinet/tcp_var.h