From owner-cvs-all@FreeBSD.ORG Thu Oct 21 14:42:32 2004 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 17FC716A4CF; Thu, 21 Oct 2004 14:42:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E911143D2F; Thu, 21 Oct 2004 14:42:31 +0000 (GMT) (envelope-from phk@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 i9LEgVOH046531; Thu, 21 Oct 2004 14:42:31 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i9LEgV3B046530; Thu, 21 Oct 2004 14:42:31 GMT (envelope-from phk) Message-Id: <200410211442.i9LEgV3B046530@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 21 Oct 2004 14:42:31 +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 vfs_subr.c src/sys/sys bufobj.h vnode.h 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: Thu, 21 Oct 2004 14:42:32 -0000 phk 2004-10-21 14:42:31 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c sys/sys bufobj.h vnode.h Log: Add BO_* macros parallel to VI_* macros for manipulating the bo_mtx. Initialize the bo_mtx when we allocate a vnode i getnewvnode() For now we point to the vnodes interlock mutex, that retains the exact same locking sematics. Move v_numoutput from vnode to bufobj. Add renaming macro to postpone code sweep. Revision Changes Path 1.533 +11 -7 src/sys/kern/vfs_subr.c 1.3 +17 -0 src/sys/sys/bufobj.h 1.247 +1 -1 src/sys/sys/vnode.h