From owner-cvs-all@FreeBSD.ORG Tue Jan 27 07:59:40 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 8CFCA16A56F; Tue, 27 Jan 2004 07:59:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4189F43D55; Tue, 27 Jan 2004 07:59:39 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i0RFxd0B022622; Tue, 27 Jan 2004 07:59:39 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i0RFxduF022621; Tue, 27 Jan 2004 07:59:39 -0800 (PST) (envelope-from des) Message-Id: <200401271559.i0RFxduF022621@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 27 Jan 2004 07:59:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_malloc.c src/sys/boot/common help.common loader.8 src/sys/boot/forth loader.conf 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: Tue, 27 Jan 2004 15:59:40 -0000 des 2004/01/27 07:59:38 PST FreeBSD src repository Modified files: sys/kern kern_malloc.c sys/boot/common help.common loader.8 sys/boot/forth loader.conf Log: Rename the kern.vm.kmem.size tunable to the more logical vm.kmem_size. To assure backward compatibility (conditional on !BURN_BRIDGES), look it up by its old name first, and log a warning (but accept the setting) if it was found. If both the old and new name are defined, the new name takes precedence. Also export vm.kmem_size as a read-only sysctl variable; I find it hard to tune a parameter when I don't know its default value, especially when that default value is computed at boot time. Revision Changes Path 1.26 +1 -1 src/sys/boot/common/help.common 1.58 +5 -5 src/sys/boot/common/loader.8 1.73 +1 -1 src/sys/boot/forth/loader.conf 1.131 +7 -1 src/sys/kern/kern_malloc.c