From owner-cvs-src@FreeBSD.ORG Mon Aug 30 17:54:57 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 E638716A4CE; Mon, 30 Aug 2004 17:54:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD9B343D55; Mon, 30 Aug 2004 17:54:57 +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 i7UHsvkv011583; Mon, 30 Aug 2004 17:54:57 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7UHsvDq011582; Mon, 30 Aug 2004 17:54:57 GMT (envelope-from rwatson) Message-Id: <200408301754.i7UHsvDq011582@repoman.freebsd.org> From: Robert Watson Date: Mon, 30 Aug 2004 17:54:57 +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_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: Mon, 30 Aug 2004 17:54:58 -0000 rwatson 2004-08-30 17:54:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/kern uipc_socket.c Log: Merge kern_socket.c:1.211 to RELENG_5: date: 2004/08/24 05:28:18; author: rwatson; state: Exp; lines: +16 -35 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. Approved by: re (scottl) Revision Changes Path 1.208.2.1 +16 -35 src/sys/kern/uipc_socket.c