From owner-cvs-src-old@FreeBSD.ORG Fri Jan 23 22:49:48 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96EB710657EB for ; Fri, 23 Jan 2009 22:49:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 843848FC2D for ; Fri, 23 Jan 2009 22:49:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n0NMnmDH026728 for ; Fri, 23 Jan 2009 22:49:48 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n0NMnmFP026727 for cvs-src-old@freebsd.org; Fri, 23 Jan 2009 22:49:48 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200901232249.n0NMnmFP026727@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Fri, 23 Jan 2009 22:49:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_cache.c src/sys/sys sysctl.h src/sys/vm vm_meter.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jan 2009 22:49:49 -0000 jhb 2009-01-23 22:49:23 UTC FreeBSD src repository Modified files: sys/kern vfs_cache.c sys/sys sysctl.h sys/vm vm_meter.c Log: SVN rev 187658 on 2009-01-23 22:49:23Z by jhb - Mark all standalone INT/LONG/QUAD sysctl's MPSAFE. This is done inside the SYSCTL() macros and thus does not need to be done for all of the nodes scattered across the source tree. - Mark the name-cache related sysctl's (including debug.hashstat.*) MPSAFE. - Mark vm.loadavg MPSAFE. - Remove GIANT_REQUIRED from vmtotal() (everything in this routine already has sufficient locking) and mark vm.vmtotal MPSAFE. - Mark the vm.stats.(sys|vm).* sysctls MPSAFE. Revision Changes Path 1.134 +8 -6 src/sys/kern/vfs_cache.c 1.166 +18 -18 src/sys/sys/sysctl.h 1.100 +53 -53 src/sys/vm/vm_meter.c