From owner-cvs-all@FreeBSD.ORG Sat Jun 9 17:49:41 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FBBA16A469; Sat, 9 Jun 2007 17:49:41 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F172613C455; Sat, 9 Jun 2007 17:49:40 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l59HndpJ002097; Sat, 9 Jun 2007 17:49:39 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l59HndZv002094; Sat, 9 Jun 2007 17:49:39 GMT (envelope-from andre) Message-Id: <200706091749.l59HndZv002094@repoman.freebsd.org> From: Andre Oppermann Date: Sat, 9 Jun 2007 17:49:39 +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_timer.c 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: Sat, 09 Jun 2007 17:49:41 -0000 andre 2007-06-09 17:49:39 UTC FreeBSD src repository Modified files: sys/netinet tcp_timer.c Log: Handle a race condition on >2 core machines in tcp_timer() when a timer issues a shutdown and a simultaneous close on the socket happens. This race condition is inherent in the current socket/ inpcb life cycle system but can be handled well. Reported by: kris Tested by: kris (on 8-core machine) Revision Changes Path 1.95 +8 -2 src/sys/netinet/tcp_timer.c