From owner-cvs-all@FreeBSD.ORG Sat Oct 4 19:48:05 2003 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 EA23616A4B3; Sat, 4 Oct 2003 19:48:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C0D243FAF; Sat, 4 Oct 2003 19:48:05 -0700 (PDT) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h952m5XJ057724; Sat, 4 Oct 2003 19:48:05 -0700 (PDT) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h952m59Z057723; Sat, 4 Oct 2003 19:48:05 -0700 (PDT) (envelope-from jeff) Message-Id: <200310050248.h952m59Z057723@repoman.freebsd.org> From: Jeff Roberson Date: Sat, 4 Oct 2003 19:48:05 -0700 (PDT) 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 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, 05 Oct 2003 02:48:06 -0000 jeff 2003/10/04 19:48:05 PDT FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: - Don't cache_purge() in getnewvnode. It's done in vclean(). With this purge, the purge in vclean, and the filesystems purge, we had 3 purges per vnode. - Move the insmntque(vp, 0) to vclean() so that we may remove it from the two vgone() functions and reduce the number of lock operations required. Revision Changes Path 1.463 +5 -11 src/sys/kern/vfs_subr.c