From owner-cvs-src@FreeBSD.ORG Tue Aug 24 05:28:19 2004 Return-Path: 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 290B216A4CE; Tue, 24 Aug 2004 05:28:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07BB243D31; Tue, 24 Aug 2004 05:28:19 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7O5SIm9007633; Tue, 24 Aug 2004 05:28:18 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7O5SI1G007632; Tue, 24 Aug 2004 05:28:18 GMT (envelope-from rwatson) Message-Id: <200408240528.i7O5SI1G007632@repoman.freebsd.org> From: Robert Watson Date: Tue, 24 Aug 2004 05:28:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Tue, 24 Aug 2004 05:28:19 -0000 rwatson 2004-08-24 05:28:18 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Conditional acquisition of socket buffer mutexes when testing socket buffers with kqueue filters is no longer required: the kqueue framework will guarantee that the mutex is held on entering the filter, either due to a call from the socket code already holding the mutex, or by explicitly acquiring it. This removes the last of the conditional socket locking. Revision Changes Path 1.211 +16 -35 src/sys/kern/uipc_socket.c