From owner-cvs-all@FreeBSD.ORG Sun Feb 20 00:56:04 2005 Return-Path: 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 78C2516A4CE; Sun, 20 Feb 2005 00:56:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6342743D1F; Sun, 20 Feb 2005 00:56:04 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1K0u4di080185; Sun, 20 Feb 2005 00:56:04 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1K0u4OE080184; Sun, 20 Feb 2005 00:56:04 GMT (envelope-from rwatson) Message-Id: <200502200056.j1K0u4OE080184@repoman.freebsd.org> From: Robert Watson Date: Sun, 20 Feb 2005 00:56:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Sun, 20 Feb 2005 00:56:04 -0000 rwatson 2005-02-20 00:56:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern uipc_syscalls.c Log: Merge uipc_syscalls.c:1.214 from HEAD to RELENG_5: date: 2005/02/17 13:00:23; author: rwatson; state: Exp; lines: +2 -2 In accept1(), extend coverage of the socket lock from just covering soref() to also covering the update of so_state. While no other user threads can update the socket state here as it's not yet hooked up to the file descriptor array yet, the protocol could also frob the socket state here, leading to a lost update to the so_state field. No reported instances of this bug (as yet). Revision Changes Path 1.200.2.4 +2 -2 src/sys/kern/uipc_syscalls.c